Completed
Push — master ( 50b186...536214 )
by Karel
04:37 queued 02:11
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 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -159,7 +159,7 @@  discard block
 block discarded – undo
159 159
         $processBuilder->setTimeout(3600);
160 160
         $phpunit = $processBuilder->getProcess();
161 161
         $phpunit->run(
162
-            function ($type, $buffer) {
162
+            function($type, $buffer) {
163 163
                 $this->output->write($buffer);
164 164
             }
165 165
         );
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             $processBuilder = new ProcessBuilder(array('php', 'bin/phpcs', '--standard=PSR2', $file));
211 211
             $processBuilder->setWorkingDirectory(getcwd());
212 212
             $phpCsFixer = $processBuilder->getProcess();
213
-            $phpCsFixer->run(function ($type, $buffer) {
213
+            $phpCsFixer->run(function($type, $buffer) {
214 214
                 $this->output->write($buffer);
215 215
             });
216 216
 
Please login to merge, or discard this patch.
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -251,12 +251,12 @@
 block discarded – undo
251 251
      */
252 252
     private static function createSymlink($symlinkTarget, $symlinkName)
253 253
     {
254
-    	$processBuilder = new ProcessBuilder(array('rm', '-rf', $symlinkTarget));
255
-    	$process = $processBuilder->getProcess();
256
-    	$process->run();
254
+        $processBuilder = new ProcessBuilder(array('rm', '-rf', $symlinkTarget));
255
+        $process = $processBuilder->getProcess();
256
+        $process->run();
257 257
     	
258
-    	if (symlink($symlinkName, $symlinkTarget) === false) {
259
-    		throw new \Exception('Error occured when trying to create a symlink.');
260
-    	}
258
+        if (symlink($symlinkName, $symlinkTarget) === false) {
259
+            throw new \Exception('Error occured when trying to create a symlink.');
260
+        }
261 261
     }
262 262
 }
Please login to merge, or discard this patch.