@@ -124,7 +124,7 @@ discard block |
||
124 | 124 | * |
125 | 125 | * @return static |
126 | 126 | */ |
127 | - public function date(string|array $dates): static |
|
127 | + public function date(string | array $dates): static |
|
128 | 128 | { |
129 | 129 | foreach ((array) $dates as $date) { |
130 | 130 | $this->dates[] = new DateComparator($date); |
@@ -140,7 +140,7 @@ discard block |
||
140 | 140 | * |
141 | 141 | * @return static |
142 | 142 | */ |
143 | - public function path(string|array $patterns): static |
|
143 | + public function path(string | array $patterns): static |
|
144 | 144 | { |
145 | 145 | $this->paths = array_merge($this->paths, (array) $patterns); |
146 | 146 | |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | * |
175 | 175 | * @throws DirectoryNotFoundException if one of the directories does not exist |
176 | 176 | */ |
177 | - public function in(string|array $dirs): static |
|
177 | + public function in(string | array $dirs): static |
|
178 | 178 | { |
179 | 179 | $resolvedDirs = []; |
180 | 180 |