Completed
Push — master ( 7e7640...61603b )
by Alec
02:51
created
src/Helpers/time/time.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,8 +29,7 @@
 block discarded – undo
29 29
 {
30 30
     return
31 31
         \is_int($time) ?
32
-            \Carbon\Carbon::createFromTimestamp($time, $tz) :
33
-            new \Carbon\Carbon($time, $tz);
32
+            \Carbon\Carbon::createFromTimestamp($time, $tz) : new \Carbon\Carbon($time, $tz);
34 33
 }
35 34
 
36 35
 /**
Please login to merge, or discard this patch.
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.