@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | * |
| 86 | 86 | * @throws VersionControlException |
| 87 | 87 | */ |
| 88 | - public function runCommand(Command $command, $exceptionCode=null) { |
|
| 88 | + public function runCommand(Command $command, $exceptionCode = null) { |
|
| 89 | 89 | $process = $this->createProcess($command->getCommandLine()); |
| 90 | 90 | $process->run(); |
| 91 | 91 | |
@@ -159,7 +159,7 @@ discard block |
||
| 159 | 159 | * |
| 160 | 160 | * @codeCoverageIgnore |
| 161 | 161 | */ |
| 162 | - public function fetch($remote=null) { |
|
| 162 | + public function fetch($remote = null) { |
|
| 163 | 163 | $command = new FetchCommand($remote); |
| 164 | 164 | return $this->runCommand( |
| 165 | 165 | $command, VersionControlException::CODE_FETCH_FAILED); |
@@ -176,7 +176,7 @@ discard block |
||
| 176 | 176 | * |
| 177 | 177 | * @codeCoverageIgnore |
| 178 | 178 | */ |
| 179 | - public function fetchTags($remote=null) { |
|
| 179 | + public function fetchTags($remote = null) { |
|
| 180 | 180 | $command = new FetchCommand($remote); |
| 181 | 181 | $command->setTags(true); |
| 182 | 182 | return $this->runCommand( |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | * |
| 34 | 34 | * @param string|null $remote |
| 35 | 35 | */ |
| 36 | - public function __construct($remote=null) { |
|
| 36 | + public function __construct($remote = null) { |
|
| 37 | 37 | $this->remote = $remote; |
| 38 | 38 | } |
| 39 | 39 | |