diff --git a/src/PendingCalls/UsesCall.php b/src/PendingCalls/UsesCall.php index 00267afb..eabd5de9 100644 --- a/src/PendingCalls/UsesCall.php +++ b/src/PendingCalls/UsesCall.php @@ -84,7 +84,7 @@ final class UsesCall }, $targets); $this->targets = array_reduce($targets, function (array $accumulator, string $target): array { - if (($matches = glob($target)) != false) { + if (($matches = glob($target)) !== false) { foreach ($matches as $file) { $accumulator[] = (string) realpath($file); }