Completed
Push — master ( 1e4599...39c955 )
by Jitendra
01:30
created
src/HigherOrderMessage.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,14 +29,14 @@
 block discarded – undo
29 29
 
30 30
     public function __call($method, $args)
31 31
     {
32
-        return $this->underscore->{$this->method}(function ($item) use ($method, $args) {
32
+        return $this->underscore->{$this->method}(function($item) use ($method, $args) {
33 33
             return \call_user_func_array([$item, $method], $args);
34 34
         });
35 35
     }
36 36
 
37 37
     public function __get($prop)
38 38
     {
39
-        return $this->underscore->{$this->method}(function ($item) use ($prop) {
39
+        return $this->underscore->{$this->method}(function($item) use ($prop) {
40 40
             $props = \array_column([$item], $prop);
41 41
 
42 42
             return empty($props) ? null : $props[0];
Please login to merge, or discard this patch.