Passed
Push — fix-cache ( 8a09c1 )
by Arnaud
04:58
created
src/Command/Command.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -188,7 +188,7 @@
 block discarded – undo
188 188
      */
189 189
     public function messageCallback(OutputInterface $output): \Closure
190 190
     {
191
-        return function ($code, $message = '', $itemsCount = 0, $itemsMax = 0) use ($output) {
191
+        return function($code, $message = '', $itemsCount = 0, $itemsMax = 0) use ($output) {
192 192
             if (strpos($code, '_PROGRESS') !== false) {
193 193
                 if ($output->isVerbose()) {
194 194
                     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
@@ -47,7 +47,7 @@
 block discarded – undo
47 47
         $dataDir = (string) $this->getBuilder($output)->getConfig()->get('data.dir');
48 48
 
49 49
         // formating output
50
-        $unicodeTreePrefix = function (RecursiveTreeIterator $tree) {
50
+        $unicodeTreePrefix = function(RecursiveTreeIterator $tree) {
51 51
             $prefixParts = [
52 52
                 RecursiveTreeIterator::PREFIX_LEFT         => ' ',
53 53
                 RecursiveTreeIterator::PREFIX_MID_HAS_NEXT => '│ ',
Please login to merge, or discard this patch.
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.