@@ -65,7 +65,7 @@ discard block |
||
| 65 | 65 | public function __construct(array $initConfig = array(), $isPharMode = false, OutputInterface $output = null) |
| 66 | 66 | { |
| 67 | 67 | $this->initConfig = $initConfig; |
| 68 | - $this->isPharMode = (bool)$isPharMode; |
|
| 68 | + $this->isPharMode = (bool) $isPharMode; |
|
| 69 | 69 | $this->output = $output ?: new NullOutput(); |
| 70 | 70 | } |
| 71 | 71 | |
@@ -264,7 +264,7 @@ discard block |
||
| 264 | 264 | */ |
| 265 | 265 | private function getArray($key, $default = array()) |
| 266 | 266 | { |
| 267 | - $result = $this->traverse((array)$key); |
|
| 267 | + $result = $this->traverse((array) $key); |
|
| 268 | 268 | if (null === $result) { |
| 269 | 269 | return $default; |
| 270 | 270 | } |
@@ -64,7 +64,7 @@ |
||
| 64 | 64 | */ |
| 65 | 65 | private function conditional($key, $value, $separator = '=', $prefix = '--') |
| 66 | 66 | { |
| 67 | - $buffer = (string)$value; |
|
| 67 | + $buffer = (string) $value; |
|
| 68 | 68 | |
| 69 | 69 | if (is_string($key) && strlen($key)) { |
| 70 | 70 | $buffer = $this->conditionalPrefix($key, $prefix) . $this->conditionalValue($value, $separator); |