Completed
Pull Request — master (#1)
by Harry
04:46
created
src/Flow.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow;
15 15
 
Please login to merge, or discard this patch.
src/Flow/AbstractFlow.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow;
15 15
 
Please login to merge, or discard this patch.
src/Flow/Callback.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow;
15 15
 
Please login to merge, or discard this patch.
src/Flow/Collection/Each.php 2 patches
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\Collection;
15 15
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
             throw new InvalidArgumentException("The supplied $node is not a NodeCollectionInterface");
51 51
         }
52 52
 
53
-        $map = new Map(function (NodeInterface $item) {
53
+        $map = new Map(function(NodeInterface $item) {
54 54
             return $this->flow->flow($item);
55 55
         });
56 56
         return $map->flow($node);
Please login to merge, or discard this patch.
src/Flow/Collection/Filter.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\Collection;
15 15
 
Please login to merge, or discard this patch.
src/Flow/Collection/First.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\Collection;
15 15
 
Please login to merge, or discard this patch.
src/Flow/Collection/Last.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\Collection;
15 15
 
Please login to merge, or discard this patch.
src/Flow/Collection/Map.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\Collection;
15 15
 
Please login to merge, or discard this patch.
src/Flow/File/Compression/Compress.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * This file is part of graze/data-flow
4
- *
5
- * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- *
10
- * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
- * @link    https://github.com/graze/data-flow
12
- */
3
+     * This file is part of graze/data-flow
4
+     *
5
+     * Copyright (c) 2016 Nature Delivered Ltd. <https://www.graze.com>
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     *
10
+     * @license https://github.com/graze/data-flow/blob/master/LICENSE.md
11
+     * @link    https://github.com/graze/data-flow
12
+     */
13 13
 
14 14
 namespace Graze\DataFlow\Flow\File\Compression;
15 15
 
Please login to merge, or discard this patch.