Completed
Push — master ( 49cbbd...fa99dd )
by Alexandre
06:00
created
src/OAuth2/EndpointMessages/Token/AccessTokenResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -106,7 +106,7 @@
 block discarded – undo
106 106
      * Response constructor.
107 107
      * @param string $accessToken
108 108
      * @param string $tokenType
109
-     * @param int|null $expiresIn
109
+     * @param integer $expiresIn
110 110
      * @param null|string $refreshToken
111 111
      * @param null|string $scope
112 112
      */
Please login to merge, or discard this patch.
src/OAuth2/Endpoints/AuthorizationEndpoint.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@
 block discarded – undo
96 96
     /**
97 97
      * Renvoie une réponse si une erreur survient, null sinon,  le client et la redirect_uri sont des parametres int/out
98 98
      * @param ServerRequestInterface $request
99
-     * @param void $client
99
+     * @param RegisteredClient $client
100 100
      * @param void $responseTypes
101 101
      * @param void $redirectUri
102 102
      * @param void $scope
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -221,7 +221,7 @@
 block discarded – undo
221 221
             if (!$scopePolicyManager->checkScope($client, $scope)) {
222 222
                 $supportedScopes = implode(', ', $scopePolicyManager->getSupportedScopes($client));
223 223
                 throw new OAuthException('invalid_scope',
224
-                    'Some of requested scopes are not supported. Scope supported : ' . $supportedScopes,
224
+                    'Some of requested scopes are not supported. Scope supported : '.$supportedScopes,
225 225
                     'https://tools.ietf.org/html/rfc6749#section-4.1');
226 226
             }
227 227
 
Please login to merge, or discard this patch.
src/OAuth2/Server.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -68,7 +68,7 @@
 block discarded – undo
68 68
     /**
69 69
      * Server constructor.
70 70
      * @param ResourceOwnerProviderInterface $resourceOwnerProvider
71
-     * @param null|StorageRepository $storageRepository
71
+     * @param StorageRepository $storageRepository
72 72
      * @param null|ConfigurationRepository $configurationRepository
73 73
      * @param ResponseTypeRepository $responseTypeRepository
74 74
      * @param null|GrantTypeRepository $grantTypeRepository
Please login to merge, or discard this patch.
src/Old/Endpoint/Endpoint.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
      * method available via the user-agent to accomplish this redirection is
43 43
      * allowed and is considered to be an implementation detail
44 44
      *
45
-     * @param $uri
45
+     * @param string $uri
46 46
      * @return Response
47 47
      */
48 48
     protected function redirectResponse($uri)
Please login to merge, or discard this patch.
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -74,18 +74,18 @@  discard block
 block discarded – undo
74 74
     protected function errorResponse(string $redirectUri, string $error, ?string $description = null, ?string $uri = null)
75 75
     {
76 76
         if ($this->containsNotAsciiChar($error)) {
77
-            throw new \Exception('Malformed error type. Expect ascii string. Got : ' . $error);
77
+            throw new \Exception('Malformed error type. Expect ascii string. Got : '.$error);
78 78
         }
79 79
 
80 80
         if (!in_array($error, self::errors)) {
81
-            throw new \Exception('Unexpected error type. Expect one of : ' . implode(', ', self::errors));
81
+            throw new \Exception('Unexpected error type. Expect one of : '.implode(', ', self::errors));
82 82
         }
83 83
 
84 84
         $data = ['error' => $error];
85 85
 
86 86
         if ($description) {
87 87
             if ($this->containsNotAsciiChar($description)) {
88
-                throw new \Exception('Malformed error description. Expect ascii string. Got : ' . $description);
88
+                throw new \Exception('Malformed error description. Expect ascii string. Got : '.$description);
89 89
             }
90 90
 
91 91
             $data['error_description'] = $description;
@@ -93,7 +93,7 @@  discard block
 block discarded – undo
93 93
 
94 94
         if ($uri) {
95 95
             if ($this->containsNotAsciiChar($uri)) {
96
-                throw new \Exception('Malformed error uri. Expect ascii string. Got : ' . $uri);
96
+                throw new \Exception('Malformed error uri. Expect ascii string. Got : '.$uri);
97 97
             }
98 98
 
99 99
             $data['error_uri'] = $uri;
@@ -102,9 +102,9 @@  discard block
 block discarded – undo
102 102
         $redirectUri = new Uri($redirectUri);
103 103
         $query = http_build_query($data);
104 104
         if ($redirectUri->getQuery()) {
105
-            $query .= '&' . $redirectUri->getQuery();
105
+            $query .= '&'.$redirectUri->getQuery();
106 106
         }
107
-        $redirectUri = $redirectUri->getScheme() . ':' . $redirectUri->getHierPart() . '?' . $query;
107
+        $redirectUri = $redirectUri->getScheme().':'.$redirectUri->getHierPart().'?'.$query;
108 108
 
109 109
         return $this->redirectResponse($redirectUri);
110 110
     }
Please login to merge, or discard this patch.
src/Old/Endpoint/Server/Authorization.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -274,7 +274,7 @@
 block discarded – undo
274 274
      * @param RegisteredClient $client
275 275
      * @param null|string $redirectUri
276 276
      * @param bool $isImplicitGrant
277
-     * @return Uri|null|string
277
+     * @return \Psr\Http\Message\UriInterface
278 278
      * @throws \Exception
279 279
      */
280 280
     private function checkClientRedirectUri(RegisteredClient $client, ?string $redirectUri, $isImplicitGrant = false)
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -175,12 +175,12 @@  discard block
 block discarded – undo
175 175
             $responseTypes = [];
176 176
             foreach (explode(' ', $request->getResponseType()) as $responseTypeRequested) {
177 177
                 $responseType = $this->server->getResponseType($responseTypeRequested);
178
-                if(!$responseType) {
178
+                if (!$responseType) {
179 179
                     return new ErrorResponse($redirectUri, 'unsupported_response_type', 'Invalid response_type parameter',
180 180
                         'https://tools.ietf.org/html/rfc6749#section-3.1.1');
181 181
                 }
182 182
 
183
-                if($responseType->isImplicit()) {
183
+                if ($responseType->isImplicit()) {
184 184
                     $isImplicitResponseType = true;
185 185
                 }
186 186
 
@@ -236,7 +236,7 @@  discard block
 block discarded – undo
236 236
             $params['state'] = $request->getState();
237 237
         }
238 238
 
239
-        if($isImplicitResponseType) {
239
+        if ($isImplicitResponseType) {
240 240
             $redirectUri = $redirectUri->withFragment(http_build_query($params));
241 241
         }
242 242
         else {
Please login to merge, or discard this patch.
src/Old/Endpoint/Server/Message/AccessToken/AccessTokenResponse.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -115,7 +115,7 @@
 block discarded – undo
115 115
      * @param UriInterface $redirectUri
116 116
      * @param string $accessToken
117 117
      * @param string $tokenType
118
-     * @param int|null $expiresIn
118
+     * @param integer $expiresIn
119 119
      * @param null|string $refreshToken
120 120
      * @param null|string $scope
121 121
      */
Please login to merge, or discard this patch.
src/Old/Endpoint/Server/Server.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
 
142 142
     /**
143 143
      * @param string $name
144
-     * @return mixed
144
+     * @return boolean
145 145
      * @throws \Exception
146 146
      */
147 147
     public function getConfig(string $name)
@@ -161,6 +161,9 @@  discard block
 block discarded – undo
161 161
         return $this->grantTypes[$uri] ?? null;
162 162
     }
163 163
 
164
+    /**
165
+     * @return \OAuth2\Storages\AuthorizationCodeStorageInterface
166
+     */
164 167
     public function getStorage(string $name)
165 168
     {
166 169
         return $this->storages[$name];
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -90,15 +90,15 @@  discard block
 block discarded – undo
90 90
     {
91 91
         foreach (self::STORAGES as $name => $class) {
92 92
             if (!isset($storages[$name])) {
93
-                throw new \Exception('Missing storage "' . $name . '"');
93
+                throw new \Exception('Missing storage "'.$name.'"');
94 94
             }
95 95
             if (!is_a($storages[$name], $class)) {
96
-                throw new \Exception('Storage "' . $name . '" must implement interface "' . $class . '"');
96
+                throw new \Exception('Storage "'.$name.'" must implement interface "'.$class.'"');
97 97
             }
98 98
         }
99 99
 
100 100
         if (array_diff(self::MINIMAL_CONFIG, array_keys($config))) {
101
-            throw new \Exception('Missing minimal configuration. Required : ' . implode(', ', self::MINIMAL_CONFIG));
101
+            throw new \Exception('Missing minimal configuration. Required : '.implode(', ', self::MINIMAL_CONFIG));
102 102
         }
103 103
 
104 104
         $this->config = array_merge(self::DEFAULT_CONFIG, $config);
@@ -146,7 +146,7 @@  discard block
 block discarded – undo
146 146
      */
147 147
     public function getConfig(string $name)
148 148
     {
149
-        if(!isset($this->config[$name])) {
149
+        if (!isset($this->config[$name])) {
150 150
             throw new \Exception('Config with name "'.$name.'" not found');
151 151
         }
152 152
         return $this->config[$name];
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     public function authenticate(ServerRequestInterface $request)
393 393
     {
394 394
         $this->client = $this->guard->authenticate($request);
395
-        return (bool)$this->client;
395
+        return (bool) $this->client;
396 396
     }
397 397
 
398 398
     /**
Please login to merge, or discard this patch.
src/Old/Endpoint/Server/Authentication/Guard.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@  discard block
 block discarded – undo
30 30
          * @var AuthenticatorInterface $authenticator
31 31
          */
32 32
         foreach ($this->authenticators as $authenticator) {
33
-            if($authenticator->requireAuthentication($client)) {
33
+            if ($authenticator->requireAuthentication($client)) {
34 34
                 return true;
35 35
             }
36 36
         }
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
          * @var AuthenticatorInterface $authenticator
44 44
          */
45 45
         foreach ($this->authenticators as $authenticator) {
46
-            if($client = $authenticator->authenticate($request)) {
46
+            if ($client = $authenticator->authenticate($request)) {
47 47
                 return $client;
48 48
             }
49 49
         }
Please login to merge, or discard this patch.
src/Old/Endpoint/Server/Message/AccessToken/ErrorResponse.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -36,25 +36,25 @@
 block discarded – undo
36 36
     public function __construct(string $error, ?string $errorDescription = null, ?string $errorUri = null, int $status = 400, array $headers = [])
37 37
     {
38 38
         if ($this->containsNotAsciiChar($error)) {
39
-            throw new \Exception('Malformed error type. Expect ascii string. Got : ' . $error);
39
+            throw new \Exception('Malformed error type. Expect ascii string. Got : '.$error);
40 40
         }
41 41
 
42 42
         if (!in_array($error, self::errors)) {
43
-            throw new \Exception('Unexpected error type. Expect one of : ' . implode(', ', self::errors));
43
+            throw new \Exception('Unexpected error type. Expect one of : '.implode(', ', self::errors));
44 44
         }
45 45
 
46 46
         $data = ['error' => $error];
47 47
 
48 48
         if ($errorDescription) {
49 49
             if ($this->containsNotAsciiChar($errorDescription)) {
50
-                throw new \Exception('Malformed error description. Expect ascii string. Got : ' . $errorDescription);
50
+                throw new \Exception('Malformed error description. Expect ascii string. Got : '.$errorDescription);
51 51
             }
52 52
             $data['error_description'] = $errorDescription;
53 53
         }
54 54
 
55 55
         if ($errorUri) {
56 56
             if ($this->containsNotAsciiChar($errorUri)) {
57
-                throw new \Exception('Malformed error uri. Expect ascii string. Got : ' . $errorUri);
57
+                throw new \Exception('Malformed error uri. Expect ascii string. Got : '.$errorUri);
58 58
             }
59 59
 
60 60
             $data['error_uri'] = $errorDescription;
Please login to merge, or discard this patch.