Completed
Pull Request — develop (#805)
by Tom
04:43
created
src/N98/Magento/Command/System/Setup/AbstractSetupCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
         $resources      = \Mage::getConfig()->getNode('global/resources')->children();
27 27
 
28 28
         foreach ($resources as $resName => $resource) {
29
-            $modName = (string) $resource->setup->module;
29
+            $modName = (string)$resource->setup->module;
30 30
 
31 31
             if ($modName == $moduleName) {
32 32
                 $moduleSetups[$resName] = $resource;
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/CompareVersionsCommand.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -62,11 +62,11 @@
 block discarded – undo
62 62
             $errorCounter = 0;
63 63
             $table = array();
64 64
             foreach ($setups as $setupName => $setup) {
65
-                $moduleName     = (string) $setup->setup->module;
66
-                $moduleVersion  = (string) $modules->{$moduleName}->version;
67
-                $dbVersion      = (string) $resourceModel->getDbVersion($setupName);
65
+                $moduleName     = (string)$setup->setup->module;
66
+                $moduleVersion  = (string)$modules->{$moduleName}->version;
67
+                $dbVersion      = (string)$resourceModel->getDbVersion($setupName);
68 68
                 if (!$ignoreDataUpdate) {
69
-                    $dataVersion = (string) $resourceModel->getDataVersion($setupName);
69
+                    $dataVersion = (string)$resourceModel->getDataVersion($setupName);
70 70
                 }
71 71
                 $ok = $dbVersion == $moduleVersion;
72 72
                 if ($ok && !$ignoreDataUpdate) {
Please login to merge, or discard this patch.
src/N98/Magento/Command/Database/InfoCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@  discard block
 block discarded – undo
46 46
 
47 47
         $settings = array();
48 48
         foreach ($this->dbSettings as $key => $value) {
49
-            $settings[$key] = (string) $value;
49
+            $settings[$key] = (string)$value;
50 50
         }
51 51
 
52 52
         $isSocketConnect = $this->dbSettings->isSocketConnect();
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
             if (!isset($settings[$settingArgument])) {
100 100
                 throw new InvalidArgumentException('Unknown setting: ' . $settingArgument);
101 101
             }
102
-            $output->writeln((string) $settings[$settingArgument]);
102
+            $output->writeln((string)$settings[$settingArgument]);
103 103
         } else {
104 104
             $this->getHelper('table')
105 105
                 ->setHeaders(array('Name', 'Value'))
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
@@ -186,7 +186,7 @@
 block discarded – undo
186 186
      */
187 187
     protected function formatVariables(array $vars)
188 188
     {
189
-        $rounding = (int) $this->_input->getOption('rounding');
189
+        $rounding = (int)$this->_input->getOption('rounding');
190 190
         if ($rounding > -1) {
191 191
             foreach ($vars as $k => &$v) {
192 192
                 if (true === $this->allowRounding($k)) {
Please login to merge, or discard this patch.
src/N98/MagerunBootstrap.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * this file is part of magerun
4
- *
5
- * @author Tom Klingenberg <https://github.com/ktomk>
6
- */
3
+     * this file is part of magerun
4
+     *
5
+     * @author Tom Klingenberg <https://github.com/ktomk>
6
+     */
7 7
 namespace N98\Util;
8 8
 
9 9
 /**
Please login to merge, or discard this patch.
build/phar/tasks/PatchedPharPackageTask.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -315,7 +315,7 @@  discard block
 block discarded – undo
315 315
         if (!is_null($this->baseDirectory)) {
316 316
             if (!$this->baseDirectory->exists()) {
317 317
                 throw new BuildException(
318
-                    "basedir '" . (string) $this->baseDirectory . "' does not exist!", $this->getLocation()
318
+                    "basedir '" . (string)$this->baseDirectory . "' does not exist!", $this->getLocation()
319 319
                 );
320 320
             }
321 321
         }
@@ -332,11 +332,11 @@  discard block
 block discarded – undo
332 332
             }
333 333
 
334 334
             if (!$this->key->exists()) {
335
-                throw new BuildException("key '" . (string) $this->key . "' does not exist!", $this->getLocation());
335
+                throw new BuildException("key '" . (string)$this->key . "' does not exist!", $this->getLocation());
336 336
             }
337 337
 
338 338
             if (!$this->key->canRead()) {
339
-                throw new BuildException("key '" . (string) $this->key . "' cannot be read!", $this->getLocation());
339
+                throw new BuildException("key '" . (string)$this->key . "' cannot be read!", $this->getLocation());
340 340
             }
341 341
         }
342 342
     }
Please login to merge, or discard this patch.
build/phar/phar-timestamp.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
     throw new RuntimeException(sprintf('Is not a file or not readable: %s', var_export($file, true)));
31 31
 }
32 32
 
33
-$timestamp = (int) `git log --format=format:%ct HEAD -1`;
33
+$timestamp = (int)`git log --format=format:%ct HEAD -1`;
34 34
 $threshold = 1343826993;
35 35
 if ($timestamp < $threshold) {
36 36
     $message = sprintf(
Please login to merge, or discard this patch.