Skip to content

Commit 367c60c

Browse files
author
Steve Talbot
committed
Remove spaces around concat operator #3007
1 parent 209cc5f commit 367c60c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Filters/Filter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ protected function shouldIgnorePath($path)
218218
// Need to check this pattern for dirs as well as individual file paths.
219219
$this->ignoreFilePatterns[$pattern] = $type;
220220

221-
$pattern = substr($pattern, 0, -2) . '(?=/|$)';
221+
$pattern = substr($pattern, 0, -2).'(?=/|$)';
222222
$this->ignoreDirPatterns[$pattern] = $type;
223223
} else {
224224
// This is a file-specific pattern, so only need to check this

0 commit comments

Comments
 (0)