We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 68fbc4a commit 6ef203dCopy full SHA for 6ef203d
src/Specification/IsHidden.php
@@ -27,6 +27,6 @@ class IsHidden extends CompositeSpecification
27
*/
28
public function isSatisfiedBy(array $value): bool
29
{
30
- return (isset($value['basename']) && substr($value['basename'], 0, 1) === '.');
+ return isset($value['basename']) && substr($value['basename'], 0, 1) === '.';
31
}
32
0 commit comments