Skip to content

Commit 455e5b8

Browse files
CS fix
1 parent 1c7af36 commit 455e5b8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Tests/Fixtures/AttributeFixtures/ExtendedRoute.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
#[\Attribute(\Attribute::IS_REPEATABLE | \Attribute::TARGET_CLASS | \Attribute::TARGET_METHOD)]
88
class ExtendedRoute extends Route
99
{
10-
public function __construct(array|string $path = null, ?string $name = null, array $defaults = []) {
10+
public function __construct(array|string $path = null, ?string $name = null, array $defaults = [])
11+
{
1112
parent::__construct("/{section<(foo|bar|baz)>}" . $path, $name, [], [], array_merge(['section' => 'foo'], $defaults));
1213
}
1314
}

0 commit comments

Comments
 (0)