@@ -164,18 +164,18 @@ |
||
164 | 164 | } |
165 | 165 | |
166 | 166 | foreach ($this->getLog() as $section => $value) { |
167 | - $this->outputInfo(PHP_EOL . $section . ":"); |
|
167 | + $this->outputInfo(PHP_EOL.$section.":"); |
|
168 | 168 | foreach ($value as $k => $v) { |
169 | 169 | if (is_array($v)) { |
170 | 170 | foreach ($v as $kk => $kv) { |
171 | 171 | if (is_array($kv)) { |
172 | - $this->output(" - {$kk}: " . print_r($kv, true)); |
|
172 | + $this->output(" - {$kk}: ".print_r($kv, true)); |
|
173 | 173 | } else { |
174 | 174 | $this->output(" - {$kk}: {$kv}"); |
175 | 175 | } |
176 | 176 | } |
177 | 177 | } else { |
178 | - $this->output(" - " . $v); |
|
178 | + $this->output(" - ".$v); |
|
179 | 179 | } |
180 | 180 | } |
181 | 181 | } |
@@ -96,7 +96,7 @@ |
||
96 | 96 | public static function search($array, $searchText, $sensitive = false) |
97 | 97 | { |
98 | 98 | $function = ($sensitive) ? 'strpos' : 'stripos'; |
99 | - return array_filter($array, function ($item) use ($searchText, $function) { |
|
99 | + return array_filter($array, function($item) use ($searchText, $function) { |
|
100 | 100 | $response = false; |
101 | 101 | foreach ($item as $key => $value) { |
102 | 102 | if ($response) { |