Skip to content

Commit

Permalink
fixed wrong negation introduced in laminas#43 (solves laminas#45)
Browse files Browse the repository at this point in the history
Signed-off-by: Dennis Riehle <webmaster@riehle-web.com>
  • Loading branch information
driehle committed Dec 29, 2021
1 parent 6695cc7 commit 6dcae51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Glob.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ protected static function systemGlob($pattern, $flags)
*/
protected static function fallbackGlob($pattern, $flags)
{
if (self::flagsIsEqualTo($flags, self::GLOB_BRACE)) {
if (! self::flagsIsEqualTo($flags, self::GLOB_BRACE)) {
return static::systemGlob($pattern, $flags);
}

Expand Down

0 comments on commit 6dcae51

Please sign in to comment.