Failed Conditions
Push — master ( 9635a1...82855d )
by Florent
14:04
created
src/Component/Server/Tests/Stub/ClientAssertionJwt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ClientRepository.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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)
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * {@inheritdoc}
139 139
      */
140
-    public function find(ClientId $clientId): ?Client
140
+    public function find(ClientId $clientId): ? Client
141 141
     {
142 142
         $client = null;
143 143
         $events = $this->eventStore->getEvents($clientId);
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/InitialAccessTokenRepository.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
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)
@@ -90,7 +90,7 @@  discard block
 block discarded – undo
90 90
     /**
91 91
      * {@inheritdoc}
92 92
      */
93
-    public function find(InitialAccessTokenId $initialAccessTokenId): ?InitialAccessToken
93
+    public function find(InitialAccessTokenId $initialAccessTokenId): ? InitialAccessToken
94 94
     {
95 95
         $initialAccessToken = null;
96 96
         $events = $this->eventStore->getEvents($initialAccessTokenId);
@@ -109,7 +109,7 @@  discard block
 block discarded – undo
109 109
      * @param UserAccountId|null      $userAccountId
110 110
      * @param \DateTimeImmutable|null $expiresAt
111 111
      */
112
-    private function createAndSaveInitialAccessToken(InitialAccessTokenId $initialAccessTokenId, ?UserAccountId $userAccountId, ?\DateTimeImmutable $expiresAt)
112
+    private function createAndSaveInitialAccessToken(InitialAccessTokenId $initialAccessTokenId, ? UserAccountId $userAccountId, ? \DateTimeImmutable $expiresAt)
113 113
     {
114 114
         $initialAccessToken = InitialAccessToken::createEmpty();
115 115
         $initialAccessToken = $initialAccessToken->create(
@@ -130,7 +130,7 @@  discard block
 block discarded – undo
130 130
      * @param UserAccountId|null      $userAccountId
131 131
      * @param \DateTimeImmutable|null $expiresAt
132 132
      */
133
-    private function createRevokeAndSaveInitialAccessToken(InitialAccessTokenId $initialAccessTokenId, ?UserAccountId $userAccountId, ?\DateTimeImmutable $expiresAt)
133
+    private function createRevokeAndSaveInitialAccessToken(InitialAccessTokenId $initialAccessTokenId, ? UserAccountId $userAccountId, ? \DateTimeImmutable $expiresAt)
134 134
     {
135 135
         $initialAccessToken = InitialAccessToken::createEmpty();
136 136
         $initialAccessToken = $initialAccessToken->create(
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ClientRegistrationManagementRule.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/UserAccount.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/UserAccountRepository.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ResourceObject.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ClientSecretPost.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.
src/Component/Server/Tests/Stub/ClientSecretBasic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
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)
Please login to merge, or discard this patch.