Completed
Push — master ( 6911db...8e7bc1 )
by Alexander
73:01 queued 45:02
created
src/Helpers/TransactionHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,10 +42,10 @@
 block discarded – undo
42 42
      * @param array ...$args
43 43
      * @return array
44 44
      */
45
-    public static function forEach(callable $closure, array $array, ...$args)
45
+    public static function forEach (callable $closure, array $array, ...$args)
46 46
     {
47 47
         return array_map(
48
-            function ($item) use ($closure, $args) {
48
+            function($item) use ($closure, $args) {
49 49
                 return static::within($closure, $item, ...$args);
50 50
             },
51 51
             $array
Please login to merge, or discard this patch.
tests/Mocks/NumberTestMock.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
     public function rules()
36 36
     {
37 37
         return [
38
-            ['phone', 'string',],
38
+            ['phone', 'string', ],
39 39
         ];
40 40
     }
41 41
 }
Please login to merge, or discard this patch.
tests/Mocks/TimestampTestMock.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
         return [
34 34
             'flexibleTimestamp' => [
35 35
                 'class' => FlexibleTimestampBehavior::class,
36
-                'attributes' => ['timestamp', 'date1', 'date2',],
36
+                'attributes' => ['timestamp', 'date1', 'date2', ],
37 37
                 'format' => $this->format,
38 38
             ],
39 39
         ];
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
     public function rules()
46 46
     {
47 47
         return [
48
-            [['timestamp', 'date1', 'date2',], 'date', 'format' => 'php:Y-m-d',],
48
+            [['timestamp', 'date1', 'date2', ], 'date', 'format' => 'php:Y-m-d', ],
49 49
         ];
50 50
     }
51 51
 }
Please login to merge, or discard this patch.