Completed
Pull Request — develop (#167)
by Robbie
06:52 queued 02:20
created
src/N98/Magento/Application.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     public function checkVarDir(OutputInterface $output)
393 393
     {
394 394
         if (OutputInterface::VERBOSITY_NORMAL <= $output->getVerbosity()) {
395
-            $tempVarDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR .  'var';
395
+            $tempVarDir = sys_get_temp_dir() . DIRECTORY_SEPARATOR . 'magento' . DIRECTORY_SEPARATOR . 'var';
396 396
 
397 397
             if (is_dir($tempVarDir)) {
398 398
                 $this->detectMagento(null, $output);
@@ -659,7 +659,7 @@  discard block
 block discarded – undo
659 659
             $this->partialConfig = $configLoader->getPartialConfig($loadExternalConfig);
660 660
             $this->detectMagento($input, $output);
661 661
             $configLoader->loadStageTwo($this->_magentoRootFolder, $loadExternalConfig, $this->_magerunStopFileFolder);
662
-            $this->config = $configLoader->toArray();;
662
+            $this->config = $configLoader->toArray(); ;
663 663
             $this->dispatcher = new EventDispatcher();
664 664
             $this->setDispatcher($this->dispatcher);
665 665
             if ($this->autoloader) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/AbstractMagentoCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
 
203 203
         if (!$silent) {
204 204
             $editionString = ($this->_magentoEnterprise ? ' (Enterprise Edition) ' : '');
205
-            $output->writeln('<info>Found Magento '. $editionString . 'in folder "' . $this->_magentoRootFolder . '"</info>');
205
+            $output->writeln('<info>Found Magento ' . $editionString . 'in folder "' . $this->_magentoRootFolder . '"</info>');
206 206
         }
207 207
 
208 208
         if (!empty($this->_magentoRootFolder)) {
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         $preferSource = true
267 267
     ) {
268 268
         $dm = $this->getComposerDownloadManager($input, $output);
269
-        if (! $config instanceof PackageInterface) {
269
+        if (!$config instanceof PackageInterface) {
270 270
             $package = $this->createComposerPackageByConfig($config);
271 271
         } else {
272 272
             $package = $config;
@@ -310,7 +310,7 @@  discard block
 block discarded – undo
310 310
                 escapeshellarg($targetFolder),
311 311
                 escapeshellarg($package->getSourceReference())
312 312
             );
313
-            $existingTag =  shell_exec($command);
313
+            $existingTag = shell_exec($command);
314 314
             if ($existingTag === $package->getSourceReference()) {
315 315
                 $command = sprintf('cd %s && hg pull', escapeshellarg($targetFolder));
316 316
                 shell_exec($command);
Please login to merge, or discard this patch.
src/N98/Magento/Command/Cache/AbstractModifierCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@  discard block
 block discarded – undo
55 55
         // Find out which types simply do not exist or are not affected by modifier
56 56
         $invalidTypes = array_diff($types, array_keys($this->getCacheTypes(!static::TARGET_IS_ENABLED)));
57 57
 
58
-        if (! empty($invalidTypes)) {
58
+        if (!empty($invalidTypes)) {
59 59
             $output->writeln(sprintf(static::INVALID_TYPES_MESSAGE, implode(', ', $invalidTypes)));
60 60
         }
61 61
 
@@ -68,7 +68,7 @@  discard block
 block discarded – undo
68 68
         }
69 69
 
70 70
         /** @var $cacheState \Magento\Framework\App\Cache\StateInterface */
71
-        $cacheState =  $this->getObjectManager()->get('\Magento\Framework\App\Cache\StateInterface');
71
+        $cacheState = $this->getObjectManager()->get('\Magento\Framework\App\Cache\StateInterface');
72 72
         $touchedTypes = [];
73 73
 
74 74
         try {
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
             }
83 83
 
84 84
             $cacheState->persist();
85
-        } catch(\Exception $e) {
85
+        } catch (\Exception $e) {
86 86
             $output->writeln(sprintf(static::EXCEPTION_MESSAGE, $e->getMessage()));
87 87
         }
88 88
 
Please login to merge, or discard this patch.
src/N98/Magento/Command/Cache/ListCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -73,7 +73,7 @@
 block discarded – undo
73 73
         foreach ($cacheTypes as $cacheType) {
74 74
 
75 75
             // If 'enabled' option is set, filter those who match
76
-            if (! is_null($input->getOption('enabled')) && $input->getOption('enabled') != $cacheType->getStatus()) {
76
+            if (!is_null($input->getOption('enabled')) && $input->getOption('enabled') != $cacheType->getStatus()) {
77 77
                 unset($cacheTypes[$cacheType->getId()]);
78 78
                 continue;
79 79
             }
Please login to merge, or discard this patch.
src/N98/Magento/Command/ConfigurationLoader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -295,7 +295,7 @@
 block discarded – undo
295 295
     {
296 296
         if ($this->_userConfig == null) {
297 297
             $this->_userConfig = array();
298
-            $homeDirectory =  OperatingSystem::getHomeDir();
298
+            $homeDirectory = OperatingSystem::getHomeDir();
299 299
             if (OperatingSystem::isWindows()) {
300 300
                 $personalConfigFile = $homeDirectory . DIRECTORY_SEPARATOR . $this->_customConfigFilename;
301 301
             } else {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/AbstractShowCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -187,7 +187,7 @@
 block discarded – undo
187 187
      */
188 188
     protected function formatVariables(array $vars)
189 189
     {
190
-        $rounding = (int)$this->_input->getOption('rounding');
190
+        $rounding = (int) $this->_input->getOption('rounding');
191 191
         if ($rounding > -1) {
192 192
             foreach ($vars as $k => &$v) {
193 193
                 if (true === $this->allowRounding($k)) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/DumpCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -341,7 +341,7 @@
 block discarded – undo
341 341
         } else {
342 342
             if ($input->getOption('add-time')) {
343 343
                 $pathParts = pathinfo($fileName);
344
-                $fileName = ($pathParts['dirname'] == '.' ? '' : $pathParts['dirname'] . DIRECTORY_SEPARATOR ) .
344
+                $fileName = ($pathParts['dirname'] == '.' ? '' : $pathParts['dirname'] . DIRECTORY_SEPARATOR) .
345 345
                     $namePrefix . $pathParts['filename'] . $nameSuffix . '.' . $pathParts['extension'];
346 346
             }
347 347
         }
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/ImportCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
      */
47 47
     protected function optimize($fileName)
48 48
     {
49
-        $in = fopen($fileName,'r');
49
+        $in = fopen($fileName, 'r');
50 50
         $result = tempnam(sys_get_temp_dir(), 'dump') . '.sql';
51 51
         $out = fopen($result, 'w');
52 52
 
@@ -138,11 +138,11 @@  discard block
 block discarded – undo
138 138
             $fileName = $this->optimize($fileName);
139 139
         }
140 140
 
141
-        if( $input->getOption('drop') ) {
141
+        if ($input->getOption('drop')) {
142 142
             $dbHelper->dropDatabase($output);
143 143
             $dbHelper->createDatabase($output);
144 144
         }
145
-        if( $input->getOption('drop-tables') ) {
145
+        if ($input->getOption('drop-tables')) {
146 146
             $dbHelper->dropTables($output);
147 147
         }
148 148
 
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/Maintain/CheckTablesCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
                 InputOption::VALUE_OPTIONAL,
87 87
                 'Output Format. One of [' . implode(',', RendererFactory::getFormats()) . ']'
88 88
             )
89
-            ->setHelp($help);;
89
+            ->setHelp($help); ;
90 90
     }
91 91
 
92 92
     /**
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
                     )
137 137
                 )
138 138
             );
139
-            $tables         = $resolvedTables[0];
139
+            $tables = $resolvedTables[0];
140 140
         } else {
141 141
             $tables = $this->dbHelper->getTables();
142 142
         }
@@ -197,7 +197,7 @@  discard block
 block discarded – undo
197 197
         return array(array(
198 198
             'table'     => $tableName,
199 199
             'operation' => 'ENGINE ' . $engine,
200
-            'type'      => sprintf('%15s rows', (string)$affectedRows),
200
+            'type'      => sprintf('%15s rows', (string) $affectedRows),
201 201
             'status'    => sprintf('%.3f secs', microtime(true) - $start),
202 202
         )
203 203
         );
Please login to merge, or discard this patch.