Completed
Push — master ( a8b1d0...72f53a )
by Nil
09:25
created
src/TodoFinder/Finder/FileParser.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 11/9/15
5
- * Time: 10:53 PM
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 11/9/15
5
+     * Time: 10:53 PM
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 namespace NilPortugues\TodoFinder\Finder;
11 11
 
12 12
 use Symfony\Component\Yaml\Yaml;
Please login to merge, or discard this patch.
src/TodoFinder/Finder/FileParserException.php 1 patch
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 11/9/15
5
- * Time: 11:00 PM
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 11/9/15
5
+     * Time: 11:00 PM
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 namespace NilPortugues\TodoFinder\Finder;
11 11
 
12 12
 class FileParserException extends \RuntimeException
Please login to merge, or discard this patch.
src/TodoFinder/Command/FinderCommand.php 2 patches
Indentation   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -1,12 +1,12 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Author: Nil Portugués Calderó <[email protected]>
4
- * Date: 11/9/15
5
- * Time: 10:10 PM
6
- *
7
- * For the full copyright and license information, please view the LICENSE
8
- * file that was distributed with this source code.
9
- */
3
+     * Author: Nil Portugués Calderó <[email protected]>
4
+     * Date: 11/9/15
5
+     * Time: 10:10 PM
6
+     *
7
+     * For the full copyright and license information, please view the LICENSE
8
+     * file that was distributed with this source code.
9
+     */
10 10
 namespace NilPortugues\TodoFinder\Command;
11 11
 
12 12
 use NilPortugues\TodoFinder\Finder\FileParser;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -135,7 +135,7 @@
 block discarded – undo
135 135
         $return = array();
136 136
         array_walk_recursive(
137 137
             $array,
138
-            function ($a) use (&$return) {
138
+            function($a) use (&$return) {
139 139
                 $return[] = $a;
140 140
             }
141 141
         );
Please login to merge, or discard this patch.