@@ -65,7 +65,7 @@ |
||
| 65 | 65 | private function didAnyFileChange(array $changedFiles): bool |
| 66 | 66 | { |
| 67 | 67 | foreach ($this->filesToWatch as $filePattern) { |
| 68 | - foreach($changedFiles as $changedFile) { |
|
| 68 | + foreach ($changedFiles as $changedFile) { |
|
| 69 | 69 | if (fnmatch($filePattern, $changedFile)) { |
| 70 | 70 | return true; |
| 71 | 71 | } |
@@ -52,14 +52,14 @@ |
||
| 52 | 52 | { |
| 53 | 53 | foreach ($this->filesToWatch as $filePattern) { |
| 54 | 54 | $foundPattern = false; |
| 55 | - foreach($changedFiles as $changedFile) { |
|
| 55 | + foreach ($changedFiles as $changedFile) { |
|
| 56 | 56 | if (fnmatch($filePattern, $changedFile)) { |
| 57 | 57 | $foundPattern = true; |
| 58 | 58 | break; |
| 59 | 59 | } |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | - if(!$foundPattern) { |
|
| 62 | + if (!$foundPattern) { |
|
| 63 | 63 | return false; |
| 64 | 64 | } |
| 65 | 65 | } |