Completed
Push — master ( b3e34b...89b4ff )
by Alec
02:22
created
src/Helpers/Objects/Picklock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
              * @param array $args
40 40
              * @return mixed
41 41
              */
42
-            function (string $methodName, ...$args) {
42
+            function(string $methodName, ...$args) {
43 43
                 if (\method_exists($this, $methodName)) {
44 44
                     return $this->$methodName(...$args);
45 45
                 }
@@ -87,7 +87,7 @@  discard block
 block discarded – undo
87 87
             /**
88 88
              * @return mixed
89 89
              */
90
-            function () use ($propertyName) {
90
+            function() use ($propertyName) {
91 91
                 if (\property_exists($this, $propertyName)) {
92 92
                     return $this->$propertyName;
93 93
                 }
Please login to merge, or discard this patch.