Skip to content

Commit 114066c

Browse files
CS fix
1 parent 7e6d178 commit 114066c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ControllerMetadata/ArgumentMetadata.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ class ArgumentMetadata
2828
private $isNullable;
2929
private $attribute;
3030

31-
public function __construct(string $name, ?string $type, bool $isVariadic, bool $hasDefaultValue, $defaultValue, bool $isNullable = false, ?ArgumentInterface $attribute = null)
31+
public function __construct(string $name, ?string $type, bool $isVariadic, bool $hasDefaultValue, $defaultValue, bool $isNullable = false, ArgumentInterface $attribute = null)
3232
{
3333
$this->name = $name;
3434
$this->type = $type;

DataCollector/RequestDataCollector.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ class RequestDataCollector extends DataCollector implements EventSubscriberInter
3434
private $sessionUsages = [];
3535
private $requestStack;
3636

37-
public function __construct(?RequestStack $requestStack = null)
37+
public function __construct(RequestStack $requestStack = null)
3838
{
3939
$this->controllers = new \SplObjectStorage();
4040
$this->requestStack = $requestStack;

0 commit comments

Comments
 (0)