@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | * |
132 | 132 | * @return static |
133 | 133 | */ |
134 | - public function date(string|array $dates): static |
|
134 | + public function date(string | array $dates): static |
|
135 | 135 | { |
136 | 136 | foreach ((array) $dates as $date) { |
137 | 137 | $this->dates[] = new DateComparator($date); |
@@ -147,7 +147,7 @@ discard block |
||
147 | 147 | * |
148 | 148 | * @return static |
149 | 149 | */ |
150 | - public function path(string|array $patterns): static |
|
150 | + public function path(string | array $patterns): static |
|
151 | 151 | { |
152 | 152 | $this->paths = array_merge($this->paths, (array) $patterns); |
153 | 153 | |
@@ -161,7 +161,7 @@ discard block |
||
161 | 161 | * |
162 | 162 | * @return static |
163 | 163 | */ |
164 | - public function notPath(string|array $patterns): static |
|
164 | + public function notPath(string | array $patterns): static |
|
165 | 165 | { |
166 | 166 | $this->notPaths = array_merge($this->notPaths, (array) $patterns); |
167 | 167 | |
@@ -195,7 +195,7 @@ discard block |
||
195 | 195 | * |
196 | 196 | * @throws DirectoryNotFoundException if one of the directories does not exist |
197 | 197 | */ |
198 | - public function in(string|array $dirs): static |
|
198 | + public function in(string | array $dirs): static |
|
199 | 199 | { |
200 | 200 | $resolvedDirs = []; |
201 | 201 |