Completed
Push — master ( 4f1190...3b2a6f )
by Nikolas
03:34
created
src/ActionRegistry.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@
 block discarded – undo
16 16
         $actions = $this->actions;
17 17
 
18 18
         if ($this->access) {
19
-            $actions = array_filter($actions, function ($id) {
19
+            $actions = array_filter($actions, function($id) {
20 20
                 return $this->access->isVisible($id);
21 21
             }, ARRAY_FILTER_USE_KEY);
22 22
         }
Please login to merge, or discard this patch.
src/delivery/web/WebAccessControl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
31 31
      * @return callable The factory to build a WebAccessControl
32 32
      */
33 33
     public static function factory(AccessControl $access, callable $acquire = null) {
34
-        return function (WebRequest $request) use ($access, $acquire) {
34
+        return function(WebRequest $request) use ($access, $acquire) {
35 35
             return new WebAccessControl($access, $request, $acquire);
36 36
         };
37 37
     }
Please login to merge, or discard this patch.