@@ -1,6 +1,6 @@ discard block |
||
| 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. |
@@ -112,7 +112,7 @@ discard block |
||
| 112 | 112 | $output = $this->output; |
| 113 | 113 | $helper = $this->getHelper('question'); |
| 114 | 114 | $question = new Question('Please enter local repository dir: '); |
| 115 | - $question->setValidator(function ($answer) { |
|
| 115 | + $question->setValidator(function($answer) { |
|
| 116 | 116 | if (null === $answer) { |
| 117 | 117 | throw new InvalidOperationException('You have to define local repository directory'); |
| 118 | 118 | } |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | ->files() |
| 143 | 143 | ; |
| 144 | 144 | $fs = new Filesystem(); |
| 145 | - $fs->mirror($templateDir, $dotfilesDir,$finder); |
|
| 145 | + $fs->mirror($templateDir, $dotfilesDir, $finder); |
|
| 146 | 146 | |
| 147 | 147 | $envFile = $dotfilesDir.DIRECTORY_SEPARATOR.'.env'; |
| 148 | 148 | $contents = file_get_contents($envFile); |