Passed
Push — master ( e2ab3d...27d13a )
by Alexandre
02:39
created
src/ScopePolicy/Policies/DefaultScopePolicy.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 
29 29
     public function __construct(array $scopes)
30 30
     {
31
-        if(empty($scopes)) {
31
+        if (empty($scopes)) {
32 32
             throw new \InvalidArgumentException('Scope must not be an empty array');
33 33
         }
34 34
         $this->scopes = $scopes;
Please login to merge, or discard this patch.
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      */
64 64
     public function setIssueNewRefreshToken(bool $issueNewRefreshToken): void
65 65
     {
66
-        if($issueNewRefreshToken) {
66
+        if ($issueNewRefreshToken) {
67 67
             $this->setRevokeOldRefreshToken(true);
68 68
         }
69 69
         $this->issueNewRefreshToken = $issueNewRefreshToken;
Please login to merge, or discard this patch.