Passed
Push — master ( ff0b4a...b3e34b )
by Alec
03:32
created
src/Helpers/Objects/Picklock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
              * @param array $args
38 38
              * @return mixed
39 39
              */
40
-            function (string $methodName, ...$args) {
40
+            function(string $methodName, ...$args) {
41 41
                 if (\method_exists($this, $methodName)) {
42 42
                     return $this->$methodName(...$args);
43 43
                 }
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             /**
68 68
              * @return mixed
69 69
              */
70
-            function () use ($propName) {
70
+            function() use ($propName) {
71 71
                 if (\property_exists($this, $propName)) {
72 72
                     return $this->$propName;
73 73
                 }
Please login to merge, or discard this patch.