Failed Conditions
Push — master ( 33458d...6d1192 )
by Florent
04:08
created
src/Bundle/Server/DependencyInjection/Source/SourceInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -22,11 +22,13 @@  discard block
 block discarded – undo
22 22
      * @param string           $path
23 23
      * @param ContainerBuilder $container
24 24
      * @param array            $config
25
+     * @return void
25 26
      */
26 27
     public function load(string $path, ContainerBuilder $container, array $config);
27 28
 
28 29
     /**
29 30
      * @param NodeDefinition $node
31
+     * @return void
30 32
      */
31 33
     public function addConfiguration(NodeDefinition $node);
32 34
 
@@ -34,6 +36,7 @@  discard block
 block discarded – undo
34 36
      * @param array            $bundleConfig
35 37
      * @param string           $path
36 38
      * @param ContainerBuilder $container
39
+     * @return void
37 40
      */
38 41
     public function prepend(array $bundleConfig, string $path, ContainerBuilder $container);
39 42
 }
Please login to merge, or discard this patch.
src/Component/Client/Behaviour/Metadata.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -64,6 +64,7 @@
 block discarded – undo
64 64
 
65 65
     /**
66 66
      * {@inheritdoc}
67
+     * @param string $key
67 68
      */
68 69
     public function get($key)
69 70
     {
Please login to merge, or discard this patch.
src/Component/Client/Client/OAuth2ClientInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -44,6 +44,7 @@
 block discarded – undo
44 44
     /**
45 45
      * @param string $key
46 46
      * @param mixed  $value
47
+     * @return void
47 48
      */
48 49
     public function set($key, $value);
49 50
 
Please login to merge, or discard this patch.
src/Component/Client/Request/OAuth2RequestInterface.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -16,11 +16,13 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * If this method is called, requests using the https scheme without a valid certificates are allowed.
18 18
      * We do not recommend you to call this method.
19
+     * @return void
19 20
      */
20 21
     public function allowUnsecuredRequests();
21 22
 
22 23
     /**
23 24
      * If this method is called, requests using the https scheme without a valid certificates are not allowed (default behaviour).
25
+     * @return void
24 26
      */
25 27
     public function disallowUnsecuredRequests();
26 28
 
@@ -33,6 +35,7 @@  discard block
 block discarded – undo
33 35
 
34 36
     /**
35 37
      * @param string $proxy
38
+     * @return void
36 39
      */
37 40
     public function setProxy($proxy);
38 41
 
@@ -45,6 +48,7 @@  discard block
 block discarded – undo
45 48
 
46 49
     /**
47 50
      * Unset the proxy settings.
51
+     * @return void
48 52
      */
49 53
     public function unsetProxy();
50 54
 
Please login to merge, or discard this patch.
src/Component/Server/Endpoint/Authorization/Authorization.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -313,7 +313,7 @@
 block discarded – undo
313 313
 
314 314
     /**
315 315
      * @param string $responseHeader
316
-     * @param mixed  $value
316
+     * @param string  $value
317 317
      *
318 318
      * @return Authorization
319 319
      */
Please login to merge, or discard this patch.
src/Component/Server/GrantType/GrantTypeInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -39,6 +39,7 @@
 block discarded – undo
39 39
      * @param ServerRequestInterface $request The request
40 40
      *
41 41
      * @throws OAuth2Exception
42
+     * @return void
42 43
      */
43 44
     public function checkTokenRequest(ServerRequestInterface $request);
44 45
 
Please login to merge, or discard this patch.
src/Component/Server/Model/AccessToken/AccessTokenRepositoryInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      * @param ClientId                $clientId
27 27
      * @param DataBag                 $parameters
28 28
      * @param DataBag                 $metadatas
29
-     * @param array                   $scopes
29
+     * @param string[]                   $scopes
30 30
      * @param null|RefreshTokenId     $refreshTokenId
31 31
      * @param null|ResourceServerId   $resourceServerId
32 32
      * @param \DateTimeImmutable|null $expiresAt
@@ -37,6 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
     /**
39 39
      * @param AccessToken $token
40
+     * @return void
40 41
      */
41 42
     public function save(AccessToken $token);
42 43
 
Please login to merge, or discard this patch.
src/Component/Server/Model/AuthCode/AuthCodeRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -38,6 +38,7 @@
 block discarded – undo
38 38
 
39 39
     /**
40 40
      * @param AuthCode $authCode
41
+     * @return void
41 42
      */
42 43
     public function save(AuthCode $authCode);
43 44
 
Please login to merge, or discard this patch.
src/Component/Server/Model/Client/ClientRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
      * Save the client.
20 20
      *
21 21
      * @param Client $client
22
+     * @return void
22 23
      */
23 24
     public function save(Client $client);
24 25
 
Please login to merge, or discard this patch.