Completed
Push — master ( df1d8c...4a6766 )
by Edward
02:40
created
src/Collection/Collection.php 2 patches
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File Collection.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File Collection.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection;
8 8
 
9 9
 use \Closure;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -185,7 +185,7 @@
 block discarded – undo
185 185
     public function each(Closure $fn)
186 186
     {
187 187
         foreach ($this->elements as $key => $element) {
188
-            if ( !$fn($key, $element)) {
188
+            if (!$fn($key, $element)) {
189 189
                 return false;
190 190
             }
191 191
         }
Please login to merge, or discard this patch.
src/Collection/Traits/ClearableTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File ClearableTrait.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File ClearableTrait.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection\Traits;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Collection/Traits/CountableTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File CountableTrait.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File CountableTrait.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection\Traits;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Collection/Traits/IterableTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File IterableTrait.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File IterableTrait.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection\Traits;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Collection/Traits/SearchableTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File SearchableTrait.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File SearchableTrait.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection\Traits;
8 8
 
9 9
 use Closure;
Please login to merge, or discard this patch.
src/Collection/Traits/SeekableTrait.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File SeekableTrait.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File SeekableTrait.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection\Traits;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Exception/ImmutableException.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File ImmutableCollection.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File ImmutableCollection.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Exception;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
src/Collection/BaseCollection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File BaseCollection.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File BaseCollection.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Collection;
8 8
 
9 9
 use \ArrayAccess;
Please login to merge, or discard this patch.
src/Collection/ImmutableCollection.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * File ImmutableCollection.php
4
- *
5
- * @author Edward Pfremmer <[email protected]>
6
- */
3
+     * File ImmutableCollection.php
4
+     *
5
+     * @author Edward Pfremmer <[email protected]>
6
+     */
7 7
 namespace Epfremme\Exception;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.