File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ final class Except implements AccessControl
10
10
{
11
11
public function __construct (
12
12
private readonly AccessControl $ acl ,
13
- private readonly array $ except = []
13
+ private readonly array $ except = [],
14
14
) {
15
15
}
16
16
Original file line number Diff line number Diff line change 9
9
final class Builder
10
10
{
11
11
public function __construct (
12
- private readonly Finder $ finder
12
+ private readonly Finder $ finder,
13
13
) {
14
14
}
15
15
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ final class DSLNamespace
13
13
14
14
public function __construct (
15
15
public readonly string $ name ,
16
- private readonly AccessControl $ acl = new AllowAll ()
16
+ private readonly AccessControl $ acl = new AllowAll (),
17
17
) {
18
18
if ($ name !== '\\' && !\preg_match (self ::NAMESPACE_REGEX , $ name )) {
19
19
throw new InvalidArgumentException (\sprintf ('Namespace name "%s" is invalid. ' , $ name ));
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ final class Finder
21
21
public function __construct (
22
22
array $ namespaces ,
23
23
private readonly AccessControl $ entryPointACL ,
24
- private readonly AccessControl $ methodACL
24
+ private readonly AccessControl $ methodACL,
25
25
) {
26
26
$ namespaces = \array_map (static fn (DSLNamespace $ n ) : DSLNamespace => $ n , $ namespaces );
27
27
You can’t perform that action at this time.
0 commit comments