Completed
Branch develop (14e095)
by Tom
04:59
created
src/N98/Magento/Command/System/InfoCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
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'))
Please login to merge, or discard this patch.
src/N98/Magento/Command/Cache/ReportCommand.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
 
42 42
     protected function isTagFiltered($metaData, $input)
43 43
     {
44
-        return (bool) count(array_intersect($metaData['tags'], explode(',', $input->getOption('filter-tag'))));
44
+        return (bool)count(array_intersect($metaData['tags'], explode(',', $input->getOption('filter-tag'))));
45 45
     }
46 46
 
47 47
     /**
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/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/MagentoConnect/ValidateExtensionCommand.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -131,7 +131,7 @@  discard block
 block discarded – undo
131 131
             $return = array();
132 132
             foreach ($files as $file) {
133 133
                 $path = $this->_getPathOfFileNodeToTarget($file);
134
-                $return[$path] = (string) $file['hash'];
134
+                $return[$path] = (string)$file['hash'];
135 135
             }
136 136
         }
137 137
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
     protected function _getPathOfFileNodeToTarget(SimpleXMLElement $node, $path = '')
172 172
     {
173 173
         if ($node->getName() == 'target') {
174
-            return $this->_getBasePathFromTargetName((string) $node['name']) . $path;
174
+            return $this->_getBasePathFromTargetName((string)$node['name']) . $path;
175 175
         }
176 176
 
177 177
         $path   = '/' . $node['name'] . $path;
@@ -199,7 +199,7 @@  discard block
 block discarded – undo
199 199
     protected function getPathOfFileNodeToTarget($node, $path = '')
200 200
     {
201 201
         if ($node->getName() == 'target') {
202
-            return $this->_getBasePathFromTargetName((string) $node['name']) . $path;
202
+            return $this->_getBasePathFromTargetName((string)$node['name']) . $path;
203 203
         }
204 204
 
205 205
         $path = '/' . $node['name'] . $path;
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.
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.