@@ -166,7 +166,7 @@ |
||
| 166 | 166 | $preciseFiles .= ' -f ' . $composeFile->getFileName(); |
| 167 | 167 | } |
| 168 | 168 | |
| 169 | - $command = 'docker-compose' . $preciseFiles . $networking . $networkDriver . $project . ' ' .$subcommand; |
|
| 169 | + $command = 'docker-compose' . $preciseFiles . $networking . $networkDriver . $project . ' ' . $subcommand; |
|
| 170 | 170 | |
| 171 | 171 | return $command; |
| 172 | 172 | } |
@@ -48,12 +48,12 @@ |
||
| 48 | 48 | $this->add(new ComposeFile($composeFile)); |
| 49 | 49 | } else { |
| 50 | 50 | throw new \Exception( |
| 51 | - 'Invalid composeFile definition "('.gettype( |
|
| 51 | + 'Invalid composeFile definition "(' . gettype( |
|
| 52 | 52 | $composeFile |
| 53 | - ).') '.var_export( |
|
| 53 | + ) . ') ' . var_export( |
|
| 54 | 54 | $composeFile, |
| 55 | 55 | true |
| 56 | - ).'"' |
|
| 56 | + ) . '"' |
|
| 57 | 57 | ); |
| 58 | 58 | } |
| 59 | 59 | } |
@@ -25,7 +25,7 @@ |
||
| 25 | 25 | if (is_string($name)) { |
| 26 | 26 | $this->setFileName($name); |
| 27 | 27 | } else { |
| 28 | - throw new Exception('Invalid fileName definition "('.gettype($name).') '.var_export($name, true).'"'); |
|
| 28 | + throw new Exception('Invalid fileName definition "(' . gettype($name) . ') ' . var_export($name, true) . '"'); |
|
| 29 | 29 | |
| 30 | 30 | } |
| 31 | 31 | } |