Completed
Push — master ( 14e077...177035 )
by Ivannis Suárez
05:35
created
src/Cubiche/Tools/GitUtils.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
     /**
43 43
      * @param string $pattern
44 44
      *
45
-     * @return Generator
45
+     * @return \Generator
46 46
      */
47 47
     public static function commitedFiles($pattern = self::PHP_FILES)
48 48
     {
Please login to merge, or discard this patch.
src/Cubiche/Tools/CodeQualityTool.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
             $processBuilder->setTimeout(null);
166 166
             $phpunit = $processBuilder->getProcess();
167 167
             $phpunit->run(
168
-                function ($type, $buffer) {
168
+                function($type, $buffer) {
169 169
                     $this->output->write($buffer);
170 170
                 }
171 171
             );
@@ -221,7 +221,7 @@  discard block
 block discarded – undo
221 221
             $processBuilder = new ProcessBuilder(array('php', 'bin/phpcs', '--standard=PSR2', $file));
222 222
             $processBuilder->setWorkingDirectory(getcwd());
223 223
             $phpCsFixer = $processBuilder->getProcess();
224
-            $phpCsFixer->run(function ($type, $buffer) {
224
+            $phpCsFixer->run(function($type, $buffer) {
225 225
                 $this->output->write($buffer);
226 226
             });
227 227
 
Please login to merge, or discard this patch.