Passed
Pull Request — master (#6)
by ANTHONIUS
02:39
created
src/Behat/Context/MainContext.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the dotfiles project.
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
         $helper = new DebugFormatterHelper();
93 93
 
94 94
         $process = new Process($cmd, getcwd());
95
-        $process->run(function ($type, $buffer) use ($output,$helper,$process): void {
95
+        $process->run(function($type, $buffer) use ($output, $helper, $process): void {
96 96
             $contents = $helper->start(
97 97
                 spl_object_hash($process),
98 98
                 $buffer,
Please login to merge, or discard this patch.
src/Core/Processor/Restore.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-declare(strict_types=1);
3
+declare(strict_types = 1);
4 4
 
5 5
 /*
6 6
  * This file is part of the dotfiles project.
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
         $output = $this->output;
133 133
         $output->writeln("Executing <comment>$relPath</comment>");
134 134
         $process = new Process($realPath);
135
-        $process->run(function ($type, $buffer) use ($relPath,$output,$helper,$process): void {
135
+        $process->run(function($type, $buffer) use ($relPath, $output, $helper, $process): void {
136 136
             $contents = $helper->start(
137 137
                 spl_object_hash($process),
138 138
                 $buffer,
Please login to merge, or discard this patch.