Test Setup Failed
Push — master ( 4706b6...910f0d )
by Josh
04:46
created
src/Blendable/Plugin.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@  discard block
 block discarded – undo
40 40
      * @param int $property_set
41 41
      * @return $this
42 42
      */
43
-    public function attachOnEvent($event_name, $priority=0, $property_set=0)
43
+    public function attachOnEvent($event_name, $priority = 0, $property_set = 0)
44 44
     {
45 45
         $this->related_data[] = [
46 46
             'event' => $event_name,
@@ -137,7 +137,7 @@  discard block
 block discarded – undo
137 137
     /**
138 138
      * @var string $type blend or revert
139 139
      */
140
-    protected function seedRelated($type='blend')
140
+    protected function seedRelated($type = 'blend')
141 141
     {
142 142
         // get all related Events:
143 143
         $events = [];
Please login to merge, or discard this patch.
src/Helpers/DownloadModxVersion.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@  discard block
 block discarded – undo
56 56
      * DownloadModxVersion constructor.
57 57
      * @param null|OutputInterface $output
58 58
      */
59
-    public function __construct($output=null)
59
+    public function __construct($output = null)
60 60
     {
61 61
         $this->output = $output;
62 62
     }
@@ -107,7 +107,7 @@  discard block
 block discarded – undo
107 107
      * @param string $branch
108 108
      * @return bool
109 109
      */
110
-    public function getGitBranch($branch='3.x')
110
+    public function getGitBranch($branch = '3.x')
111 111
     {
112 112
         $this->git_project_version = $branch;
113 113
         $this->loadGuzzle();
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
      * @param string $release
126 126
      * @return bool
127 127
      */
128
-    public function getGitRelease($release='v2.6.1-pl')
128
+    public function getGitRelease($release = 'v2.6.1-pl')
129 129
     {
130 130
         $this->git_project_version = ltrim($release, 'v');
131 131
         $this->loadGuzzle();
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
             // Base URI is used with relative requests
166 166
             'base_uri' => 'https://github.com/modxcms/revolution/archive/',
167 167
             // You can set any number of default request options.
168
-            'timeout'  => 300.0,// for slow internet
168
+            'timeout'  => 300.0, // for slow internet
169 169
         ]);
170 170
     }
171 171
 
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * @param bool $remove_build
176 176
      * @return bool
177 177
      */
178
-    protected function moveGitFiles($run_composer_update=true, $remove_setup=true, $remove_build=true)
178
+    protected function moveGitFiles($run_composer_update = true, $remove_setup = true, $remove_build = true)
179 179
     {
180 180
         // unzip into proper directory:
181 181
         $zip = new ZipArchive;
@@ -183,14 +183,14 @@  discard block
 block discarded – undo
183 183
             $file_count = $zip->numFiles;
184 184
 
185 185
             if ($this->output instanceof OutputInterface) {
186
-                $this->output->writeln('Extracting '.$this->zip_file. ' to '.BLEND_CACHE_DIR.' File count: '.$file_count);
186
+                $this->output->writeln('Extracting '.$this->zip_file.' to '.BLEND_CACHE_DIR.' File count: '.$file_count);
187 187
                 $progress = new ProgressBar($this->output, $file_count);
188 188
                 $progress->start();
189 189
 
190 190
                 $progress->setRedrawFrequency(10);
191 191
             }
192 192
 
193
-            for($i = 0; $i < $zip->numFiles; $i++) {
193
+            for ($i = 0; $i < $zip->numFiles; $i++) {
194 194
                 $zip->extractTo(BLEND_CACHE_DIR, [$zip->getNameIndex($i)]);
195 195
 
196 196
                 if (isset($progress) && $progress instanceof ProgressBar) {
@@ -210,11 +210,11 @@  discard block
 block discarded – undo
210 210
 
211 211
             if ($remove_build) {
212 212
                 // delete the _build:
213
-                $this->deleteDirectory(MODX_PATH . '_build');
213
+                $this->deleteDirectory(MODX_PATH.'_build');
214 214
             }
215 215
             if ($remove_setup) {
216 216
                 // delete the setup:
217
-                $this->deleteDirectory(MODX_PATH . 'setup');
217
+                $this->deleteDirectory(MODX_PATH.'setup');
218 218
             }
219 219
 
220 220
             // run composer update:
@@ -226,7 +226,7 @@  discard block
 block discarded – undo
226 226
 
227 227
         } else {
228 228
             // error
229
-            $this->output->writeln('<error>Error Extracting '.$this->zip_file. ' to '.BLEND_CACHE_DIR.'</error>');
229
+            $this->output->writeln('<error>Error Extracting '.$this->zip_file.' to '.BLEND_CACHE_DIR.'</error>');
230 230
         }
231 231
         return false;
232 232
     }
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
     /**
235 235
      * @param int $file_count ~ count of files in the directory
236 236
      */
237
-    protected function copyExtractedDirectory($file_count=4000)
237
+    protected function copyExtractedDirectory($file_count = 4000)
238 238
     {
239 239
         $source = BLEND_CACHE_DIR.'revolution-'.$this->git_project_version;
240 240
         $destination = MODX_PATH;
@@ -249,11 +249,11 @@  discard block
 block discarded – undo
249 249
     {
250 250
         // Composer\Factory::getHomeDir() method
251 251
         // needs COMPOSER_HOME environment variable set
252
-        putenv('COMPOSER_HOME=' . MODX_PATH . 'vendor/bin/composer');
252
+        putenv('COMPOSER_HOME='.MODX_PATH.'vendor/bin/composer');
253 253
         putenv('COMPOSER='.MODX_PATH.'composer.json');
254 254
 
255 255
         $output = new ConsoleOutput();
256
-        $output->writeln('Run: composer install: COMPOSER='.MODX_PATH.'composer.json'.PHP_EOL.'COMPOSER_HOME=' . MODX_PATH . 'vendor/bin/composer');
256
+        $output->writeln('Run: composer install: COMPOSER='.MODX_PATH.'composer.json'.PHP_EOL.'COMPOSER_HOME='.MODX_PATH.'vendor/bin/composer');
257 257
 
258 258
         try {
259 259
             //ini_set('memory_limit', '1024M');
Please login to merge, or discard this patch.
src/Helpers/Files.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
      * @param string $destination ~ full path of destination
22 22
      * @param int $file_count
23 23
      */
24
-    public function copyDirectory($source, $destination, $file_count=4000)
24
+    public function copyDirectory($source, $destination, $file_count = 4000)
25 25
     {
26 26
         if (!is_dir($destination)) {
27 27
             mkdir($destination, 0700);
@@ -44,13 +44,13 @@  discard block
 block discarded – undo
44 44
         /** @var \DirectoryIterator $item */
45 45
         foreach ($recursiveIteratorIterator as $item) {
46 46
             if ($item->isDir()) {
47
-                if (is_dir($destination. DIRECTORY_SEPARATOR. $recursiveIteratorIterator->getSubPathName())) {
47
+                if (is_dir($destination.DIRECTORY_SEPARATOR.$recursiveIteratorIterator->getSubPathName())) {
48 48
                     continue;
49 49
                 }
50
-                mkdir($destination . DIRECTORY_SEPARATOR . $recursiveIteratorIterator->getSubPathName());
50
+                mkdir($destination.DIRECTORY_SEPARATOR.$recursiveIteratorIterator->getSubPathName());
51 51
 
52 52
             } else {
53
-                copy($item, $destination . DIRECTORY_SEPARATOR . $recursiveIteratorIterator->getSubPathName());
53
+                copy($item, $destination.DIRECTORY_SEPARATOR.$recursiveIteratorIterator->getSubPathName());
54 54
             }
55 55
 
56 56
             if (isset($progress) && $progress instanceof ProgressBar) {
Please login to merge, or discard this patch.
src/Helpers/SimpleCache.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@  discard block
 block discarded – undo
34 34
      * @param string $key
35 35
      * @return bool|mixed
36 36
      */
37
-    public function get($key='install-config')
37
+    public function get($key = 'install-config')
38 38
     {
39 39
         $path = $this->getFullKeyPath($key);
40 40
         $data = false;
@@ -50,10 +50,10 @@  discard block
 block discarded – undo
50 50
      * @param string $key
51 51
      * @param array $data
52 52
      */
53
-    public function set($key='install-config', $data=[])
53
+    public function set($key = 'install-config', $data = [])
54 54
     {
55 55
         $content = '<?php '.PHP_EOL.
56
-            'return ' . var_export($data, true) . ';';
56
+            'return '.var_export($data, true).';';
57 57
 
58 58
         file_put_contents($this->getFullKeyPath($key), $content);
59 59
     }
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * @param null|string $key ~ if null will delete the complete directory
63 63
      */
64
-    public function remove($key=null)
64
+    public function remove($key = null)
65 65
     {
66 66
         if (!empty($key)) {
67 67
             $path = $this->getFullKeyPath($key);
@@ -71,7 +71,7 @@  discard block
 block discarded – undo
71 71
 
72 72
         } else {
73 73
             // clean the directory:
74
-            $this->deleteDirectory(MODX_PATH . $this->directory);
74
+            $this->deleteDirectory(MODX_PATH.$this->directory);
75 75
         }
76 76
     }
77 77
 
@@ -81,8 +81,8 @@  discard block
 block discarded – undo
81 81
      */
82 82
     protected function getFullKeyPath($key)
83 83
     {
84
-        return rtrim($this->directory, '/') . DIRECTORY_SEPARATOR .
85
-            preg_replace('/[^A-Za-z0-9\_\-]/', '', str_replace(['/', ' '], '_', $key)) .
84
+        return rtrim($this->directory, '/').DIRECTORY_SEPARATOR.
85
+            preg_replace('/[^A-Za-z0-9\_\-]/', '', str_replace(['/', ' '], '_', $key)).
86 86
             '.php';
87 87
     }
88 88
 
Please login to merge, or discard this patch.
src/Helpers/ModxConfig.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -21,22 +21,22 @@  discard block
 block discarded – undo
21 21
      * @param string $config_path
22 22
      * @param array $config
23 23
      */
24
-    public function __construct($config_path, array $config=[])
24
+    public function __construct($config_path, array $config = [])
25 25
     {
26 26
 
27
-        $this->config_path = $config_path . 'core/config/' . (defined('MODX_CONFIG_KEY') ? MODX_CONFIG_PATH : 'config'). '.inc.php';
27
+        $this->config_path = $config_path.'core/config/'.(defined('MODX_CONFIG_KEY') ? MODX_CONFIG_PATH : 'config').'.inc.php';
28 28
 
29 29
         $defaults = [
30
-            'site_sessionname' => 'SN' . uniqid(''),
31
-            'core_path' => (defined('MODX_CORE_PATH') ? MODX_CORE_PATH : MODX_PATH . 'core/'),
32
-            'mgr_path' => (defined('MODX_MANAGER_PATH') ? MODX_MANAGER_PATH : MODX_PATH . 'manager/'),
30
+            'site_sessionname' => 'SN'.uniqid(''),
31
+            'core_path' => (defined('MODX_CORE_PATH') ? MODX_CORE_PATH : MODX_PATH.'core/'),
32
+            'mgr_path' => (defined('MODX_MANAGER_PATH') ? MODX_MANAGER_PATH : MODX_PATH.'manager/'),
33 33
             'mgr_url' => (defined('MODX_MANAGER_URL') ? MODX_MANAGER_URL : '/manager/'),
34
-            'connectors_path' => (defined('MODX_CONNECTORS_PATH') ? MODX_CONNECTORS_PATH : MODX_PATH . 'connectors/'),
34
+            'connectors_path' => (defined('MODX_CONNECTORS_PATH') ? MODX_CONNECTORS_PATH : MODX_PATH.'connectors/'),
35 35
             'connectors_url' => (defined('MODX_CONNECTORS_URL') ? MODX_CONNECTORS_URL : '/connectors/'),
36 36
             'web_path' => (defined('MODX_BASE_PATH') ? MODX_BASE_PATH : MODX_PATH),
37 37
             'web_url' => (defined('MODX_BASE_URL') ? MODX_BASE_URL : '/'),
38
-            'processors_path' => (defined('MODX_CORE_PATH') ? MODX_CORE_PATH : MODX_PATH . 'core/') . 'model/modx/processors/',
39
-            'assets_path' => (defined('MODX_ASSETS_PATH') ? MODX_ASSETS_PATH : MODX_PATH . 'assets/'),
38
+            'processors_path' => (defined('MODX_CORE_PATH') ? MODX_CORE_PATH : MODX_PATH.'core/').'model/modx/processors/',
39
+            'assets_path' => (defined('MODX_ASSETS_PATH') ? MODX_ASSETS_PATH : MODX_PATH.'assets/'),
40 40
             'assets_url' => (defined('MODX_ASSETS_URL') ? MODX_ASSETS_URL : '/assets/'),
41 41
 
42 42
             'database_dsn' => '',
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
         $this->config['database_password'] = addslashes($this->config['database_password']);
103 103
 
104 104
         $this->config['last_install_time'] = time();
105
-        $this->config['site_id'] = uniqid('modx',true);
105
+        $this->config['site_id'] = uniqid('modx', true);
106 106
 
107 107
         /* make UUID if not set */
108 108
         if (empty($this->config['uuid'])) {
@@ -118,9 +118,9 @@  discard block
 block discarded – undo
118 118
                 $replace = [];
119 119
                 foreach ($this->config as $key => $value) {
120 120
                     if (is_scalar($value)) {
121
-                        $replace['{' . $key . '}'] = $value;
121
+                        $replace['{'.$key.'}'] = $value;
122 122
                     } elseif (is_array($value)) {
123
-                        $replace['{' . $key . '}'] = var_export($value, true);
123
+                        $replace['{'.$key.'}'] = var_export($value, true);
124 124
                     }
125 125
                 }
126 126
 
@@ -168,9 +168,9 @@  discard block
 block discarded – undo
168 168
      */
169 169
     protected function generateUUID() {
170 170
         srand(intval(microtime(true) * 1000));
171
-        $b = md5(uniqid(rand(),true),true);
171
+        $b = md5(uniqid(rand(), true), true);
172 172
         $b[6] = chr((ord($b[6]) & 0x0F) | 0x40);
173 173
         $b[8] = chr((ord($b[8]) & 0x3F) | 0x80);
174
-        return implode('-',unpack('H8a/H4b/H4c/H4d/H12e',$b));
174
+        return implode('-', unpack('H8a/H4b/H4c/H4d/H12e', $b));
175 175
     }
176 176
 }
177 177
\ No newline at end of file
Please login to merge, or discard this patch.
src/Model/xPDO/mysql/BlendMigrations.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@  discard block
 block discarded – undo
6 6
 class BlendMigrations extends \LCI\Blend\Model\xPDO\BlendMigrations
7 7
 {
8 8
 
9
-    public static $metaMap = array (
9
+    public static $metaMap = array(
10 10
         'package' => 'LCI\\Blend\\Model\\xPDO',
11 11
         'version' => '3.0',
12 12
         'table' => 'blend_migrations',
13 13
         'extends' => 'xPDO\\Om\\xPDOSimpleObject',
14 14
         'fields' => 
15
-        array (
15
+        array(
16 16
             'name' => NULL,
17 17
             'version' => NULL,
18 18
             'type' => 'master',
@@ -23,23 +23,23 @@  discard block
 block discarded – undo
23 23
             'processed_at' => NULL,
24 24
         ),
25 25
         'fieldMeta' => 
26
-        array (
26
+        array(
27 27
             'name' => 
28
-            array (
28
+            array(
29 29
                 'dbtype' => 'varchar',
30 30
                 'precision' => '255',
31 31
                 'phptype' => 'string',
32 32
                 'null' => false,
33 33
             ),
34 34
             'version' => 
35
-            array (
35
+            array(
36 36
                 'dbtype' => 'varchar',
37 37
                 'precision' => '32',
38 38
                 'phptype' => 'string',
39 39
                 'null' => true,
40 40
             ),
41 41
             'type' => 
42
-            array (
42
+            array(
43 43
                 'dbtype' => 'set',
44 44
                 'precision' => '\'master\',\'stagging\',\'dev\',\'local\'',
45 45
                 'phptype' => 'string',
@@ -47,13 +47,13 @@  discard block
 block discarded – undo
47 47
                 'default' => 'master',
48 48
             ),
49 49
             'description' => 
50
-            array (
50
+            array(
51 51
                 'dbtype' => 'text',
52 52
                 'phptype' => 'string',
53 53
                 'null' => true,
54 54
             ),
55 55
             'status' => 
56
-            array (
56
+            array(
57 57
                 'dbtype' => 'varchar',
58 58
                 'precision' => '16',
59 59
                 'phptype' => 'string',
@@ -61,21 +61,21 @@  discard block
 block discarded – undo
61 61
                 'default' => 'ready',
62 62
             ),
63 63
             'author' => 
64
-            array (
64
+            array(
65 65
                 'dbtype' => 'varchar',
66 66
                 'precision' => '255',
67 67
                 'phptype' => 'string',
68 68
                 'null' => true,
69 69
             ),
70 70
             'created_at' => 
71
-            array (
71
+            array(
72 72
                 'dbtype' => 'timestamp',
73 73
                 'phptype' => 'timestamp',
74 74
                 'null' => false,
75 75
                 'default' => 'CURRENT_TIMESTAMP',
76 76
             ),
77 77
             'processed_at' => 
78
-            array (
78
+            array(
79 79
                 'dbtype' => 'timestamp',
80 80
                 'phptype' => 'timestamp',
81 81
                 'null' => true,
Please login to merge, or discard this patch.
src/Model/xPDO/metadata.mysql.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,11 +1,11 @@
 block discarded – undo
1 1
 <?php
2
-$xpdo_meta_map = array (
2
+$xpdo_meta_map = array(
3 3
     'version' => '3.0',
4 4
     'namespace' => 'LCI\\Blend\\Model\\xPDO',
5 5
     'class_map' => 
6
-    array (
6
+    array(
7 7
         'xPDO\\Om\\xPDOSimpleObject' => 
8
-        array (
8
+        array(
9 9
             0 => 'LCI\\Blend\\Model\\xPDO\\BlendMigrations',
10 10
         ),
11 11
     ),
Please login to merge, or discard this patch.
src/Console/Modx/Install.php 1 patch
Spacing   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -138,7 +138,7 @@  discard block
 block discarded – undo
138 138
             }
139 139
         }
140 140
 
141
-        $output->writeln('Done! ' . $this->getRunStats());
141
+        $output->writeln('Done! '.$this->getRunStats());
142 142
 
143 143
         return 0;
144 144
     }
@@ -175,26 +175,26 @@  discard block
 block discarded – undo
175 175
         $question = new Question('Database Prefix [modx_]: ', 'modx_');
176 176
         $dbPrefix = $helper->ask($this->input, $this->output, $question);
177 177
 
178
-        $question = new Question('Hostname (' . gethostname() . ') or IP address for local virtual boxes, default: [192.168.33.10]: ', '192.168.33.10');
178
+        $question = new Question('Hostname ('.gethostname().') or IP address for local virtual boxes, default: [192.168.33.10]: ', '192.168.33.10');
179 179
         $host = $helper->ask($this->input, $this->output, $question);
180 180
         $host = rtrim(trim($host), '/');
181 181
 
182 182
         $defaultBaseUrl = '/';
183
-        $question = new Question('Base URL [' . $defaultBaseUrl . ']: ', $defaultBaseUrl);
183
+        $question = new Question('Base URL ['.$defaultBaseUrl.']: ', $defaultBaseUrl);
184 184
         $baseUrl = $helper->ask($this->input, $this->output, $question);
185
-        $baseUrl = '/' . trim(trim($baseUrl), '/') . '/';
185
+        $baseUrl = '/'.trim(trim($baseUrl), '/').'/';
186 186
         $baseUrl = str_replace('//', '/', $baseUrl);
187 187
 
188 188
         $question = new Question('Manager Language [en]: ', 'en');
189 189
         $language = $helper->ask($this->input, $this->output, $question);
190 190
 
191
-        $defaultMgrUser = basename(MODX_PATH) . '_admin';
192
-        $question = new Question('Manager User [' . $defaultMgrUser . ']: ', $defaultMgrUser);
191
+        $defaultMgrUser = basename(MODX_PATH).'_admin';
192
+        $question = new Question('Manager User ['.$defaultMgrUser.']: ', $defaultMgrUser);
193 193
         $managerUser = $helper->ask($this->input, $this->output, $question);
194 194
 
195 195
         $question = new Question('Manager User Password [generated]: ', 'generate');
196 196
         $question->setHidden(true);
197
-        $question->setValidator(function ($value) {
197
+        $question->setValidator(function($value) {
198 198
             if (empty($value) || strlen($value) < 8) {
199 199
                 throw new \RuntimeException(
200 200
                     'Please specify a password of at least 8 characters to continue.'
@@ -235,11 +235,11 @@  discard block
 block discarded – undo
235 235
             'admin_password' => $managerPass,
236 236
             'admin_email' => $managerEmail,
237 237
 
238
-            'core_path' => MODX_PATH . 'core/',
239
-            'mgr_path' => MODX_PATH . 'manager/',
240
-            'mgr_url' => $baseUrl . 'manager/',
241
-            'connectors_path' => MODX_PATH . 'connectors/',
242
-            'connectors_url' => $baseUrl . 'connectors/',
238
+            'core_path' => MODX_PATH.'core/',
239
+            'mgr_path' => MODX_PATH.'manager/',
240
+            'mgr_url' => $baseUrl.'manager/',
241
+            'connectors_path' => MODX_PATH.'connectors/',
242
+            'connectors_url' => $baseUrl.'connectors/',
243 243
             'web_path' => MODX_PATH,
244 244
             'web_url' => $baseUrl,
245 245
             'remove_setup_directory' => true,
@@ -261,7 +261,7 @@  discard block
 block discarded – undo
261 261
      * @param mixed
262 262
      * @return bool|mixed
263 263
      */
264
-    protected function getUserInstallConfigValue($key, $default=false)
264
+    protected function getUserInstallConfigValue($key, $default = false)
265 265
     {
266 266
         if (isset($this->install_config[$key])) {
267 267
             return $this->install_config[$key];
@@ -275,8 +275,8 @@  discard block
 block discarded – undo
275 275
         $modx = null;
276 276
 
277 277
         /* to validate installation, instantiate the modX class and run a few tests */
278
-        if (include_once (MODX_PATH . 'core/model/modx/modx.class.php')) {
279
-            $modx = new \modX(MODX_PATH . 'core/config/', array(
278
+        if (include_once (MODX_PATH.'core/model/modx/modx.class.php')) {
279
+            $modx = new \modX(MODX_PATH.'core/config/', array(
280 280
                 \xPDO::OPT_SETUP => true,
281 281
             ));
282 282
             if (!is_object($modx) || !($modx instanceof modX)) {
@@ -285,7 +285,7 @@  discard block
 block discarded – undo
285 285
                 $modx->setLogTarget(array(
286 286
                     'target' => 'FILE',
287 287
                     'options' => array(
288
-                        'filename' => 'install.' . (defined('MODX_CONFIG_KEY') ? MODX_CONFIG_PATH : '') . '.' . strftime('%Y%m%dT%H%M%S') . '.log'
288
+                        'filename' => 'install.'.(defined('MODX_CONFIG_KEY') ? MODX_CONFIG_PATH : '').'.'.strftime('%Y%m%dT%H%M%S').'.log'
289 289
                     )
290 290
                 ));
291 291
 
Please login to merge, or discard this patch.
src/Console/Modx/Upgrade.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -113,7 +113,7 @@
 block discarded – undo
113 113
 
114 114
         }
115 115
 
116
-        $output->writeln('Done! ' . $this->getRunStats());
116
+        $output->writeln('Done! '.$this->getRunStats());
117 117
 
118 118
         return 0;
119 119
     }
Please login to merge, or discard this patch.