Skip to content

Commit 94a8d83

Browse files
committed
fix: Apply Rector code style fixes
1 parent 5e518fa commit 94a8d83

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

tests/system/HTTP/SiteURIFactoryTest.php

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -174,28 +174,28 @@ public static function provideCreateFromStringWithoutIndexPage(): iterable
174174

175175
public function testCreateFromStringWithIndexPageSubDirCombinations(){
176176
$standardUrl = "http://localhost:8080";
177-
$subDirectoryAppsOptions = array(
178-
array(
177+
$subDirectoryAppsOptions = [
178+
[
179179
"subDir" => "",
180180
"indexPage" => ""
181-
),
182-
array(
181+
],
182+
[
183183
"subDir" => "",
184184
"indexPage" => "index.php"
185-
),
186-
array(
185+
],
186+
[
187187
"subDir" => "/subdir",
188188
"indexPage" => ""
189-
),
190-
array(
189+
],
190+
[
191191
"subDir" => "/subdir",
192192
"indexPage" => "index.php"
193-
),
194-
array(
193+
],
194+
[
195195
"subDir" => "/subdir/subsubdir",
196196
"indexPage" => "index.php"
197-
),
198-
);
197+
],
198+
];
199199
foreach($subDirectoryAppsOptions as $option){
200200
$route = "woot";
201201
config(App::class)->baseURL = $standardUrl . $option["subDir"];

0 commit comments

Comments
 (0)