Completed
Push — master ( 0e811b...26d10c )
by
unknown
02:43
created
fakes/IteratorTransfer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@
 block discarded – undo
45 45
         while ($this->origin->valid()) {
46 46
             $target = (new ValidTernary(
47 47
                 $this->origin,
48
-                function (Iterator $source) use ($target) {
48
+                function(Iterator $source) use ($target) {
49 49
                     $target = $target->from($source);
50 50
                     $source->next();
51 51
                     return $target;
Please login to merge, or discard this patch.
src/SavingIterator.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -33,10 +33,10 @@
 block discarded – undo
33 33
             new ContextVeil(
34 34
                 $target,
35 35
                 new ClosureReaction(
36
-                    function (AddingIterator $stored) use ($origin) {
36
+                    function(AddingIterator $stored) use ($origin) {
37 37
                         return (new ValidTernary(
38 38
                             $origin,
39
-                            function (Iterator $source) use ($stored) {
39
+                            function(Iterator $source) use ($stored) {
40 40
                                 $temp = $stored->from($source);
41 41
                                 $source->next();
42 42
                                 return $temp;
Please login to merge, or discard this patch.
src/ValidTernary.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -56,8 +56,7 @@
 block discarded – undo
56 56
     {
57 57
         return (
58 58
             ($this->origin->valid()) ?
59
-            $this->cons :
60
-            $this->alter
59
+            $this->cons : $this->alter
61 60
         )($this->origin);
62 61
     }
63 62
 }
Please login to merge, or discard this patch.