Skip to content

Commit 7b161ee

Browse files
authored
Fixed a copy paste error
1 parent 32e4830 commit 7b161ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function locate()
2323
foreach ($paths as $path) {
2424
while (dirname($path) !== $path) {
2525
$file = $path . DIRECTORY_SEPARATOR . FILE_NAME;
26-
if (!isset($alreadyChecked[$file]) && is_file($file))) {
26+
if (!isset($alreadyChecked[$file]) && is_file($file)) {
2727
read($file);
2828
State::$timestamp = max(filemtime($file), State::$timestamp);
2929
}

0 commit comments

Comments
 (0)