@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | * @param DataBag $parameters |
38 | 38 | * @param DataTransporter|null $dataTransporter |
39 | 39 | */ |
40 | - protected function __construct(?UserAccountId $userAccountId, DataBag $parameters, ?DataTransporter $dataTransporter) |
|
40 | + protected function __construct(? UserAccountId $userAccountId, DataBag $parameters, ? DataTransporter $dataTransporter) |
|
41 | 41 | { |
42 | 42 | $this->parameters = $parameters; |
43 | 43 | $this->userAccountId = $userAccountId; |
@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | * |
52 | 52 | * @return CreateClientCommand |
53 | 53 | */ |
54 | - public static function create(?UserAccountId $userAccountId, DataBag $parameters, ?DataTransporter $dataTransporter): CreateClientCommand |
|
54 | + public static function create(? UserAccountId $userAccountId, DataBag $parameters, ? DataTransporter $dataTransporter) : CreateClientCommand |
|
55 | 55 | { |
56 | 56 | return new self($userAccountId, $parameters, $dataTransporter); |
57 | 57 | } |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | /** |
68 | 68 | * @return UserAccountId|null |
69 | 69 | */ |
70 | - public function getUserAccountId(): ?UserAccountId |
|
70 | + public function getUserAccountId(): ? UserAccountId |
|
71 | 71 | { |
72 | 72 | return $this->userAccountId; |
73 | 73 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @param array $scopes |
44 | 44 | * @param DataTransporter|null $dataTransporter |
45 | 45 | */ |
46 | - protected function __construct(ClientId $clientId, UserAccountId $userAccountId, array $scopes, ?DataTransporter $dataTransporter) |
|
46 | + protected function __construct(ClientId $clientId, UserAccountId $userAccountId, array $scopes, ? DataTransporter $dataTransporter) |
|
47 | 47 | { |
48 | 48 | parent::__construct($dataTransporter); |
49 | 49 | $this->clientId = $clientId; |
@@ -58,7 +58,7 @@ discard block |
||
58 | 58 | * |
59 | 59 | * @return CreatePreConfiguredAuthorizationCommand |
60 | 60 | */ |
61 | - public static function create(ClientId $clientId, UserAccountId $userAccountId, array $scopes, ?DataTransporter $dataTransporter): CreatePreConfiguredAuthorizationCommand |
|
61 | + public static function create(ClientId $clientId, UserAccountId $userAccountId, array $scopes, ? DataTransporter $dataTransporter) : CreatePreConfiguredAuthorizationCommand |
|
62 | 62 | { |
63 | 63 | return new self($clientId, $userAccountId, $scopes, $dataTransporter); |
64 | 64 | } |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -declare(strict_types=1); |
|
3 | +declare(strict_types = 1); |
|
4 | 4 | |
5 | 5 | /* |
6 | 6 | * The MIT License (MIT) |