Passed
Pull Request — master (#15)
by Sergei
14:37 queued 02:12
created
src/DenyAll.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  */
10 10
 final class DenyAll implements AccessCheckerInterface
11 11
 {
12
-    public function userHasPermission($userId, string $permissionName, array $parameters = []): bool
12
+    public function userHasPermission($userId, string $permissionName, array $parameters = [ ]): bool
13 13
     {
14 14
         return false;
15 15
     }
Please login to merge, or discard this patch.
src/AllowAll.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  */
10 10
 final class AllowAll implements AccessCheckerInterface
11 11
 {
12
-    public function userHasPermission($userId, string $permissionName, array $parameters = []): bool
12
+    public function userHasPermission($userId, string $permissionName, array $parameters = [ ]): bool
13 13
     {
14 14
         return true;
15 15
     }
Please login to merge, or discard this patch.