Failed Conditions
Push — master ( 30e6d9...c5e7a7 )
by Florent
09:03 queued 04:39
created
src/Bundle/Server/DependencyInjection/Source/Scope/ScopePolicyDefault.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,8 +15,8 @@
 block discarded – undo
15 15
 
16 16
 use Fluent\PhpConfigFileLoader;
17 17
 use OAuth2Framework\Bundle\Server\DependencyInjection\Source\ActionableSource;
18
-use Symfony\Component\Config\FileLocator;
19 18
 use Symfony\Component\Config\Definition\Builder\NodeDefinition;
19
+use Symfony\Component\Config\FileLocator;
20 20
 use Symfony\Component\DependencyInjection\ContainerBuilder;
21 21
 
22 22
 final class ScopePolicyDefault extends ActionableSource
Please login to merge, or discard this patch.
src/Bundle/Server/DependencyInjection/Source/Scope/ScopePolicySource.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 use Fluent\PhpConfigFileLoader;
17 17
 use OAuth2Framework\Bundle\Server\DependencyInjection\Source\ActionableSource;
18 18
 use OAuth2Framework\Bundle\Server\DependencyInjection\Source\SourceInterface;
19
-use Symfony\Component\Config\FileLocator;
20 19
 use Symfony\Component\Config\Definition\Builder\NodeDefinition;
20
+use Symfony\Component\Config\FileLocator;
21 21
 use Symfony\Component\DependencyInjection\ContainerBuilder;
22 22
 
23 23
 final class ScopePolicySource extends ActionableSource
Please login to merge, or discard this patch.
src/Bundle/Server/DependencyInjection/Source/Scope/ScopeSource.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
 use OAuth2Framework\Bundle\Server\DependencyInjection\Source\ActionableSource;
18 18
 use OAuth2Framework\Bundle\Server\DependencyInjection\Source\SourceInterface;
19 19
 use OAuth2Framework\Component\Server\Model\Scope\ScopeRepositoryInterface;
20
-use Symfony\Component\Config\FileLocator;
21 20
 use Symfony\Component\Config\Definition\Builder\NodeDefinition;
21
+use Symfony\Component\Config\FileLocator;
22 22
 use Symfony\Component\DependencyInjection\ContainerBuilder;
23 23
 
24 24
 final class ScopeSource extends ActionableSource
Please login to merge, or discard this patch.
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/Bundle/Server/Plugin/OpenIdConnectPlugin/OpenIdConnectPlugin.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -24,8 +24,8 @@
 block discarded – undo
24 24
 use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\PairwiseSubjectIdentifierCompilerPass;
25 25
 use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\SessionIFrameRouteCompilerPass;
26 26
 use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\UserInfoEndpointSignatureSupportCompilerPass;
27
-use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\UserinfoRouteCompilerPass;
28 27
 use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\UserInfoScopeSupportCompilerPass;
28
+use OAuth2Framework\Bundle\Server\OpenIdConnectPlugin\DependencyInjection\Compiler\UserinfoRouteCompilerPass;
29 29
 use SpomkyLabs\JoseBundle\Helper\ConfigurationHelper;
30 30
 use Symfony\Component\Config\Definition\Builder\ArrayNodeDefinition;
31 31
 use Symfony\Component\Config\FileLocator;
Please login to merge, or discard this patch.
src/Bundle/Server/Resolver/AccessTokenResolver.php 1 patch
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,8 +16,8 @@
 block discarded – undo
16 16
 use OAuth2Framework\Bundle\Server\SecurityPlugin\Security\Authentication\Token\OAuth2Token;
17 17
 use OAuth2Framework\Component\Server\Model\AccessToken\AccessToken;
18 18
 use Symfony\Component\HttpFoundation\Request;
19
-use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface;
20 19
 use Symfony\Component\HttpKernel\ControllerMetadata\ArgumentMetadata;
20
+use Symfony\Component\HttpKernel\Controller\ArgumentValueResolverInterface;
21 21
 use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
22 22
 
23 23
 final class AccessTokenResolver implements ArgumentValueResolverInterface
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.