Failed Conditions
Push — ng ( 50e350...d45f3b )
by Florent
09:44
created
src/Bundle/DependencyInjection/Source/Component.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/Bundle/Tests/TestBundle/Service/UserProvider.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -40,6 +40,7 @@
 block discarded – undo
40 40
 
41 41
     /**
42 42
      * {@inheritdoc}
43
+     * @param string $username
43 44
      */
44 45
     public function loadUserByUsername($username)
45 46
     {
Please login to merge, or discard this patch.
src/Component/AuthorizationEndpoint/Authorization.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -418,7 +418,7 @@  discard block
 block discarded – undo
418 418
     /**
419 419
      * @param string $key
420 420
      *
421
-     * @return mixed
421
+     * @return boolean
422 422
      */
423 423
     public function getData(string $key)
424 424
     {
@@ -431,7 +431,7 @@  discard block
 block discarded – undo
431 431
 
432 432
     /**
433 433
      * @param string $key
434
-     * @param mixed  $data
434
+     * @param boolean  $data
435 435
      *
436 436
      * @return Authorization
437 437
      */
Please login to merge, or discard this patch.
AuthorizationEndpoint/UserAccountDiscovery/UserAccountDiscovery.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -28,6 +28,7 @@
 block discarded – undo
28 28
 
29 29
     /**
30 30
      * @param Authorization $authorization
31
+     * @return void
31 32
      */
32 33
     public function check(Authorization $authorization);
33 34
 }
Please login to merge, or discard this patch.
src/Component/ClientRegistrationEndpoint/Rule/Rule.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,6 @@
 block discarded – undo
22 22
      * @param ClientId           $clientId
23 23
      * @param DataBag            $commandParameters
24 24
      * @param DataBag            $validatedParameters
25
-     * @param UserAccountId|null $userAccountId
26 25
      * @param callable           $next
27 26
      *
28 27
      * @return DataBag
Please login to merge, or discard this patch.
src/Component/IssuerDiscoveryEndpoint/IssuerDiscoveryEndpoint.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -99,7 +99,7 @@
 block discarded – undo
99 99
 
100 100
     /**
101 101
      * @param ResourceId $resourceName
102
-     * @param resource   $resource
102
+     * @param Resource   $resource
103 103
      *
104 104
      * @return array
105 105
      */
Please login to merge, or discard this patch.
src/Component/OpenIdConnect/IdTokenLoader.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * @param IdTokenId $idTokenId
60 60
      *
61
-     * @return IdToken|null
61
+     * @return \self|null
62 62
      */
63 63
     public function load(IdTokenId $idTokenId): ? IdToken
64 64
     {
Please login to merge, or discard this patch.
TokenEndpoint/AuthenticationMethod/AuthenticationMethodManager.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
      * @param ServerRequestInterface $request
129 129
      * @param Client                 $client
130 130
      * @param AuthenticationMethod   $authenticationMethod
131
-     * @param mixed                  $clientCredentials
131
+     * @param string                  $clientCredentials
132 132
      *
133 133
      * @return bool
134 134
      */
Please login to merge, or discard this patch.
src/Component/TokenEndpoint/Extension/TokenEndpointExtensionManager.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
     /**
72 72
      * @param int $index
73 73
      *
74
-     * @return callable
74
+     * @return \Closure
75 75
      *
76 76
      * @throws OAuth2Exception
77 77
      */
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     /**
93 93
      * @param int $index
94 94
      *
95
-     * @return callable
95
+     * @return \Closure
96 96
      *
97 97
      * @throws OAuth2Exception
98 98
      */
Please login to merge, or discard this patch.