@@ -26,7 +26,7 @@ |
||
| 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; |
@@ -62,11 +62,11 @@ |
||
| 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) { |
@@ -46,7 +46,7 @@ discard block |
||
| 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 |
||
| 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')) |
@@ -186,7 +186,7 @@ |
||
| 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)) { |
@@ -1,9 +1,9 @@ |
||
| 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 | /** |
@@ -315,7 +315,7 @@ discard block |
||
| 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 |
||
| 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 | } |
@@ -30,7 +30,7 @@ |
||
| 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( |