Passed
Push — analysis-bQr2N4 ( fc84f5 )
by Arnaud
05:42 queued 22s
created
src/Config.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
src/Command/Command.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -207,7 +207,7 @@
 block discarded – undo
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) {
Please login to merge, or discard this patch.
src/Command/ShowContent.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
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 => '│ ',
Please login to merge, or discard this patch.