@@ -61,7 +61,7 @@ |
||
| 61 | 61 | foreach($values as $variable => $value) |
| 62 | 62 | { |
| 63 | 63 | $this->output->writeln(sprintf( |
| 64 | - '<fg=cyan>%s</fg=cyan> = %s', |
|
| 64 | + '<fg=cyan>%s</fg=cyan> = %s', |
|
| 65 | 65 | $variable, |
| 66 | 66 | $this->formatValue($value) |
| 67 | 67 | )); |
@@ -40,7 +40,7 @@ discard block |
||
| 40 | 40 | |
| 41 | 41 | public function setDefaultEnvironment($environment) |
| 42 | 42 | { |
| 43 | - if(! empty($environment) && is_string($environment)) |
|
| 43 | + if( ! empty($environment) && is_string($environment)) |
|
| 44 | 44 | { |
| 45 | 45 | $this->defaultEnvironment = $environment; |
| 46 | 46 | } |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | |
| 89 | 89 | private function handleCustomData($value) |
| 90 | 90 | { |
| 91 | - if(! is_string($value)) |
|
| 91 | + if( ! is_string($value)) |
|
| 92 | 92 | { |
| 93 | 93 | return $value; |
| 94 | 94 | } |
@@ -8,7 +8,7 @@ discard block |
||
| 8 | 8 | { |
| 9 | 9 | if(is_array($value)) |
| 10 | 10 | { |
| 11 | - return array_map(function ($item) { |
|
| 11 | + return array_map(function($item) { |
|
| 12 | 12 | return $this->filterOneValue($item); |
| 13 | 13 | }, $value); |
| 14 | 14 | } |
@@ -18,7 +18,7 @@ discard block |
||
| 18 | 18 | |
| 19 | 19 | private function filterOneValue($value) |
| 20 | 20 | { |
| 21 | - if(! is_string($value)) |
|
| 21 | + if( ! is_string($value)) |
|
| 22 | 22 | { |
| 23 | 23 | return $value; |
| 24 | 24 | } |
@@ -26,7 +26,7 @@ |
||
| 26 | 26 | |
| 27 | 27 | private function checkFilenameIsValid($filename) |
| 28 | 28 | { |
| 29 | - if(! preg_match('~.*\.conf$~', $filename)) |
|
| 29 | + if( ! preg_match('~.*\.conf$~', $filename)) |
|
| 30 | 30 | { |
| 31 | 31 | $this->triggerError("$filename is not a valid file name", 'Invalid dependency'); |
| 32 | 32 | } |
@@ -99,7 +99,7 @@ |
||
| 99 | 99 | } |
| 100 | 100 | |
| 101 | 101 | $this->info(sprintf( |
| 102 | - '%d files generated', |
|
| 102 | + '%d files generated', |
|
| 103 | 103 | count($distFiles) |
| 104 | 104 | )); |
| 105 | 105 | } |
@@ -42,7 +42,7 @@ |
||
| 42 | 42 | { |
| 43 | 43 | if($verbosity <= $this->output->getVerbosity()) |
| 44 | 44 | { |
| 45 | - if(! is_array($messages)) |
|
| 45 | + if( ! is_array($messages)) |
|
| 46 | 46 | { |
| 47 | 47 | $messages = array($messages); |
| 48 | 48 | } |
@@ -50,8 +50,8 @@ discard block |
||
| 50 | 50 | private function writeLevel($level) |
| 51 | 51 | { |
| 52 | 52 | $message = str_pad(sprintf( |
| 53 | - '[%s]', |
|
| 54 | - strtoupper($level) |
|
| 53 | + '[%s]', |
|
| 54 | + strtoupper($level) |
|
| 55 | 55 | ), 10); |
| 56 | 56 | |
| 57 | 57 | $this->output->write($this->colorizeMessage($level, $message)); |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | if(isset($colors[$level])) |
| 68 | 68 | { |
| 69 | 69 | $message = sprintf( |
| 70 | - '<%1$s>%2$s</%1$s>', |
|
| 70 | + '<%1$s>%2$s</%1$s>', |
|
| 71 | 71 | 'fg=' . $colors[$level], |
| 72 | 72 | $message |
| 73 | 73 | ); |
@@ -56,7 +56,7 @@ |
||
| 56 | 56 | catch(ParseException $e) |
| 57 | 57 | { |
| 58 | 58 | throw new \RuntimeException(sprintf( |
| 59 | - 'Error while parsing profile : %s', |
|
| 59 | + 'Error while parsing profile : %s', |
|
| 60 | 60 | $e->getMessage() |
| 61 | 61 | )); |
| 62 | 62 | } |
@@ -29,14 +29,14 @@ |
||
| 29 | 29 | |
| 30 | 30 | private function parseFormatters($content) |
| 31 | 31 | { |
| 32 | - if(! is_array($content)) |
|
| 32 | + if( ! is_array($content)) |
|
| 33 | 33 | { |
| 34 | 34 | throw new \InvalidArgumentException('Syntax error in profile [formatters]'); |
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | foreach($content as $name => $rules) |
| 38 | 38 | { |
| 39 | - if(! is_array($rules)) |
|
| 39 | + if( ! is_array($rules)) |
|
| 40 | 40 | { |
| 41 | 41 | throw new \InvalidArgumentException('Syntax error in profile [formatters]'); |
| 42 | 42 | } |
@@ -123,7 +123,7 @@ |
||
| 123 | 123 | $titleLineNumber = count($lines); |
| 124 | 124 | |
| 125 | 125 | // ensure an empty line preceeds comment |
| 126 | - if(! empty($lines[$titleLineNumber - 1])) |
|
| 126 | + if( ! empty($lines[$titleLineNumber - 1])) |
|
| 127 | 127 | { |
| 128 | 128 | $lines[$titleLineNumber] = ''; |
| 129 | 129 | $titleLineNumber++; |