Completed
Push — master ( 633e5a...9cc31f )
by Andrii
16:02
created
src/controllers/ScrutinizerController.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -24,7 +24,7 @@  discard block
 block discarded – undo
24 24
     public function actionUploadCoverage()
25 25
     {
26 26
         $lang = $this->getLanguage();
27
-        return $this->runActions(["get-ocular-$lang", "run-ocular-$lang"]);
27
+        return $this->runActions([ "get-ocular-$lang", "run-ocular-$lang" ]);
28 28
     }
29 29
 
30 30
     public function actionGetOcularPhp()
@@ -38,7 +38,7 @@  discard block
 block discarded – undo
38 38
 
39 39
     public function actionRunOcularPhp()
40 40
     {
41
-        return $this->passthru('ocular', ['code-coverage:upload', '--format=php-clover', 'coverage.clover']);
41
+        return $this->passthru('ocular', [ 'code-coverage:upload', '--format=php-clover', 'coverage.clover' ]);
42 42
     }
43 43
 
44 44
     public function actionGetOcularPython()
@@ -48,6 +48,6 @@  discard block
 block discarded – undo
48 48
 
49 49
     public function actionRunOcularPython()
50 50
     {
51
-        return $this->passthru('ocular', ['--data-file', '.coverage']);
51
+        return $this->passthru('ocular', [ '--data-file', '.coverage' ]);
52 52
     }
53 53
 }
Please login to merge, or discard this patch.