Completed
Push — master ( b086cb...c1a4fd )
by Vladimir
06:51
created
src/Command/CheckGeneratorCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -191,7 +191,7 @@
 block discarded – undo
191 191
      */
192 192
     private function createFile(string $basePath, string $from, string $to, array $tplData)
193 193
     {
194
-        $r = array_filter($this->tpls, static function (SplFileInfo $f) use ($from) {
194
+        $r = array_filter($this->tpls, static function(SplFileInfo $f) use ($from) {
195 195
             return $f->getBasename() === $from;
196 196
         });
197 197
 
Please login to merge, or discard this patch.
src/Controller/ApiController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
 
47 47
             $runner = $this->runnerManager->getRunner($checks, $groups, $tags);
48 48
 
49
-            $breakOnFailure = (boolean)$request->get('bof', false);
49
+            $breakOnFailure = (boolean) $request->get('bof', false);
50 50
             $runner->setBreakOnFailure($breakOnFailure);
51 51
 
52 52
             /** @var $reporter Api */
Please login to merge, or discard this patch.