@@ -56,7 +56,7 @@ |
||
56 | 56 | * Overrides configuration with environment variables. |
57 | 57 | */ |
58 | 58 | $data = $this->getData(); |
59 | - $applyEnv = function ($array) use ($data) { |
|
59 | + $applyEnv = function($array) use ($data) { |
|
60 | 60 | $iterator = new \RecursiveIteratorIterator( |
61 | 61 | new \RecursiveArrayIterator($array), |
62 | 62 | \RecursiveIteratorIterator::SELF_FIRST |
@@ -207,7 +207,7 @@ |
||
207 | 207 | */ |
208 | 208 | public function messageCallback(): \Closure |
209 | 209 | { |
210 | - return function ($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
210 | + return function($code, $message = '', $itemsCount = 0, $itemsMax = 0) { |
|
211 | 211 | if (strpos($code, '_PROGRESS') !== false) { |
212 | 212 | if ($this->output->isVerbose()) { |
213 | 213 | if ($itemsCount > 0) { |
@@ -51,7 +51,7 @@ |
||
51 | 51 | $dataDir = (string) $this->getBuilder()->getConfig()->get('data.dir'); |
52 | 52 | |
53 | 53 | // formating output |
54 | - $unicodeTreePrefix = function (RecursiveTreeIterator $tree) { |
|
54 | + $unicodeTreePrefix = function(RecursiveTreeIterator $tree) { |
|
55 | 55 | $prefixParts = [ |
56 | 56 | RecursiveTreeIterator::PREFIX_LEFT => ' ', |
57 | 57 | RecursiveTreeIterator::PREFIX_MID_HAS_NEXT => '│ ', |