Skip to content

Commit 6ef203d

Browse files
committed
remove unneeded parentheses
1 parent 68fbc4a commit 6ef203d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Specification/IsHidden.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,6 @@ class IsHidden extends CompositeSpecification
2727
*/
2828
public function isSatisfiedBy(array $value): bool
2929
{
30-
return (isset($value['basename']) && substr($value['basename'], 0, 1) === '.');
30+
return isset($value['basename']) && substr($value['basename'], 0, 1) === '.';
3131
}
3232
}

0 commit comments

Comments
 (0)