Passed
Push — develop ( f140eb...658058 )
by nguereza
01:41
created
src/AuthorizationServerInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,7 @@
 block discarded – undo
42 42
  * @class AuthorizationServerInterface
43 43
  * @package Platine\OAuth2
44 44
  */
45
-interface AuthorizationServerInterface
46
-{
45
+interface AuthorizationServerInterface {
47 46
     /**
48 47
      * Whether the authorization server has support the given grant
49 48
      * @param string $grant
Please login to merge, or discard this patch.
src/Grant/ClientCredentialsGrant.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -66,9 +66,9 @@
 block discarded – undo
66 66
         $this->accessTokenService = $accessTokenService;
67 67
     }
68 68
 
69
-     /**
70
-     * {@inheritdoc}
71
-     */
69
+        /**
70
+         * {@inheritdoc}
71
+         */
72 72
     public function createAuthorizationResponse(
73 73
         ServerRequestInterface $request,
74 74
         Client $client,
Please login to merge, or discard this patch.
src/AuthorizationServer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -51,8 +51,7 @@
 block discarded – undo
51 51
  * @class AuthorizationServer
52 52
  * @package Platine\OAuth2
53 53
  */
54
-class AuthorizationServer implements AuthorizationServerInterface
55
-{
54
+class AuthorizationServer implements AuthorizationServerInterface {
56 55
     /**
57 56
      * The ClientService
58 57
      * @var ClientService
Please login to merge, or discard this patch.
src/ResourceServer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@
 block discarded – undo
47 47
  * @class ResourceServer
48 48
  * @package Platine\OAuth2
49 49
  */
50
-class ResourceServer implements ResourceServerInterface
51
-{
50
+class ResourceServer implements ResourceServerInterface {
52 51
     /**
53 52
      * The AccessTokenService
54 53
      * @var AccessTokenService
Please login to merge, or discard this patch.
src/ResourceServerInterface.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -45,8 +45,7 @@
 block discarded – undo
45 45
  * @class ResourceServerInterface
46 46
  * @package Platine\OAuth2
47 47
  */
48
-interface ResourceServerInterface
49
-{
48
+interface ResourceServerInterface {
50 49
     /**
51 50
      * Return the access token
52 51
      * @param ServerRequestInterface $request
Please login to merge, or discard this patch.