@@ -45,7 +45,7 @@ |
||
| 45 | 45 | $table->enableFormattingTags() |
| 46 | 46 | ->setHeaders(array($environment1, $environment2)) |
| 47 | 47 | ->displayKeys() |
| 48 | - ->setValueRenderingFunction(function($value){ |
|
| 48 | + ->setValueRenderingFunction(function($value) { |
|
| 49 | 49 | return $this->formatValue($value); |
| 50 | 50 | }); |
| 51 | 51 | |
@@ -45,7 +45,7 @@ |
||
| 45 | 45 | $table->enableFormattingTags() |
| 46 | 46 | ->setHeaders(array($environment1, $environment2)) |
| 47 | 47 | ->displayKeys() |
| 48 | - ->setValueRenderingFunction(function($value){ |
|
| 48 | + ->setValueRenderingFunction(function($value) { |
|
| 49 | 49 | return $this->formatValue($value); |
| 50 | 50 | }); |
| 51 | 51 | |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | public function getAllVariables() |
| 35 | 35 | { |
| 36 | - $variables = array_map(function($item){ |
|
| 36 | + $variables = array_map(function($item) { |
|
| 37 | 37 | return explode(':', $item)[0]; |
| 38 | 38 | }, array_keys($this->values)); |
| 39 | 39 | |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | |
| 34 | 34 | public function getAllVariables() |
| 35 | 35 | { |
| 36 | - $variables = array_map(function($item){ |
|
| 36 | + $variables = array_map(function($item) { |
|
| 37 | 37 | return explode(':', $item)[0]; |
| 38 | 38 | }, array_keys($this->values)); |
| 39 | 39 | |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | $lines = array(); |
| 68 | 68 | $lines[] = $separatorRow; |
| 69 | 69 | |
| 70 | - if(! empty($this->headers)) |
|
| 70 | + if( ! empty($this->headers)) |
|
| 71 | 71 | { |
| 72 | 72 | $lines[] = $this->renderLine($this->headers); |
| 73 | 73 | $lines[] = $separatorRow; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | return; |
| 91 | 91 | } |
| 92 | 92 | |
| 93 | - if(! empty($this->headers)) |
|
| 93 | + if( ! empty($this->headers)) |
|
| 94 | 94 | { |
| 95 | 95 | array_unshift($this->headers, ''); |
| 96 | 96 | } |
@@ -108,7 +108,7 @@ discard block |
||
| 108 | 108 | |
| 109 | 109 | $this->columnsSize = array_pad(array(), $this->nbColumns, -1); |
| 110 | 110 | |
| 111 | - if(! empty($this->headers)) |
|
| 111 | + if( ! empty($this->headers)) |
|
| 112 | 112 | { |
| 113 | 113 | $this->updateColumnsSize(array($this->headers)); |
| 114 | 114 | } |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | { |
| 133 | 133 | foreach($newValues as $row) |
| 134 | 134 | { |
| 135 | - if(! is_array($row)) |
|
| 135 | + if( ! is_array($row)) |
|
| 136 | 136 | { |
| 137 | 137 | throw new \InvalidArgumentException('Rows must be arrays'); |
| 138 | 138 | } |
@@ -182,7 +182,7 @@ discard block |
||
| 182 | 182 | |
| 183 | 183 | private function stripTags($value) |
| 184 | 184 | { |
| 185 | - return preg_replace ('/<[^>]*>/', '', $value); |
|
| 185 | + return preg_replace('/<[^>]*>/', '', $value); |
|
| 186 | 186 | } |
| 187 | 187 | |
| 188 | 188 | private function renderLine(array $row) |
@@ -23,7 +23,7 @@ discard block |
||
| 23 | 23 | $this->variables = $variables; |
| 24 | 24 | |
| 25 | 25 | $this->externalReader = null; |
| 26 | - if(! empty($externalVariables)) |
|
| 26 | + if( ! empty($externalVariables)) |
|
| 27 | 27 | { |
| 28 | 28 | $this->externalReader = new Reader($externalVariables, array()); |
| 29 | 29 | } |
@@ -31,7 +31,7 @@ discard block |
||
| 31 | 31 | |
| 32 | 32 | public function setDefaultEnvironment($environment) |
| 33 | 33 | { |
| 34 | - if(! empty($environment) && is_string($environment)) |
|
| 34 | + if( ! empty($environment) && is_string($environment)) |
|
| 35 | 35 | { |
| 36 | 36 | $this->defaultEnvironment = $environment; |
| 37 | 37 | } |
@@ -51,7 +51,7 @@ discard block |
||
| 51 | 51 | |
| 52 | 52 | private function readVariable($variable, $environment) |
| 53 | 53 | { |
| 54 | - if(! array_key_exists($variable, $this->variables)) |
|
| 54 | + if( ! array_key_exists($variable, $this->variables)) |
|
| 55 | 55 | { |
| 56 | 56 | throw new \RuntimeException(sprintf( |
| 57 | 57 | 'Unknown variable %s', |
@@ -85,7 +85,7 @@ discard block |
||
| 85 | 85 | |
| 86 | 86 | private function processExternal($variable, $environment) |
| 87 | 87 | { |
| 88 | - if(! $this->externalReader instanceof Reader) |
|
| 88 | + if( ! $this->externalReader instanceof Reader) |
|
| 89 | 89 | { |
| 90 | 90 | throw new \RuntimeException(sprintf( |
| 91 | 91 | 'There is no external variables. %s can not be resolve for environment %s', |
@@ -6,7 +6,7 @@ |
||
| 6 | 6 | { |
| 7 | 7 | private function filterValue($value) |
| 8 | 8 | { |
| 9 | - if(! is_string($value)) |
|
| 9 | + if( ! is_string($value)) |
|
| 10 | 10 | { |
| 11 | 11 | return $value; |
| 12 | 12 | } |