Failed Conditions
Pull Request — master (#28)
by Florent
20:36 queued 15:50
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/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/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/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.
src/Component/Server/Model/Event/EventStoreInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -19,6 +19,7 @@
 block discarded – undo
19 19
 {
20 20
     /**
21 21
      * @param Event $event
22
+     * @return void
22 23
      */
23 24
     public function save(Event $event);
24 25
 
Please login to merge, or discard this patch.
Server/Model/InitialAccessToken/InitialAccessTokenRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -27,6 +27,7 @@
 block discarded – undo
27 27
 
28 28
     /**
29 29
      * @param InitialAccessToken $initialAccessToken
30
+     * @return void
30 31
      */
31 32
     public function save(InitialAccessToken $initialAccessToken);
32 33
 
Please login to merge, or discard this patch.
PreConfiguredAuthorizationRepositoryInterface.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -31,6 +31,7 @@
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * @param PreConfiguredAuthorization $preConfiguredAuthorization
34
+     * @return void
34 35
      */
35 36
     public function save(PreConfiguredAuthorization $preConfiguredAuthorization);
36 37
 
Please login to merge, or discard this patch.