Passed
Push — master ( d2a547...ae8014 )
by butschster
10:20
created
src/Framework/Auth/TokenStorageScope.php 1 patch
Braces   +5 added lines, -2 removed lines patch added patch discarded remove patch
@@ -52,9 +52,12 @@
 block discarded – undo
52 52
      */
53 53
     private function getTokenStorage(): TokenStorageInterface
54 54
     {
55
-        try {
55
+        try
56
+        {
56 57
             return $this->container->get(TokenStorageInterface::class);
57
-        } catch (NotFoundExceptionInterface $e) {
58
+        }
59
+        catch (NotFoundExceptionInterface $e)
60
+        {
58 61
             throw new ScopeException('Unable to resolve token storage, invalid scope', $e->getCode(), $e);
59 62
         }
60 63
     }
Please login to merge, or discard this patch.