@@ -92,7 +92,7 @@ |
||
| 92 | 92 | if (!isset($this->infos[$settingArgument])) { |
| 93 | 93 | throw new InvalidArgumentException('Unknown key: ' . $settingArgument); |
| 94 | 94 | } |
| 95 | - $output->writeln((string) $this->infos[$settingArgument]); |
|
| 95 | + $output->writeln((string)$this->infos[$settingArgument]); |
|
| 96 | 96 | } else { |
| 97 | 97 | $this->getHelper('table') |
| 98 | 98 | ->setHeaders(array('name', 'value')) |
@@ -33,7 +33,7 @@ |
||
| 33 | 33 | $errorMessage = 'Wrong hostname configured. <info>Hostname must contain a dot</info>'; |
| 34 | 34 | |
| 35 | 35 | $host = parse_url($baseUrl, PHP_URL_HOST); |
| 36 | - $isValid = (bool) strstr($host, '.'); |
|
| 36 | + $isValid = (bool)strstr($host, '.'); |
|
| 37 | 37 | $result->setStatus($isValid); |
| 38 | 38 | if ($isValid) { |
| 39 | 39 | $result->setMessage( |
@@ -20,7 +20,7 @@ |
||
| 20 | 20 | { |
| 21 | 21 | $result = $results->createResult(); |
| 22 | 22 | $filePath = 'app/etc/local.xml'; |
| 23 | - $defaultUnsecureBaseURL = (string) \Mage::getConfig()->getNode( |
|
| 23 | + $defaultUnsecureBaseURL = (string)\Mage::getConfig()->getNode( |
|
| 24 | 24 | 'default/' . \Mage_Core_Model_Store::XML_PATH_UNSECURE_BASE_URL |
| 25 | 25 | ); |
| 26 | 26 | |
@@ -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; |
@@ -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)) { |
@@ -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( |