Completed
Push — master ( ad0611...abd676 )
by Tom
09:08 queued 04:30
created
src/N98/Magento/Command/System/Cron/HistoryCommand.php 1 patch
Spacing   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -47,8 +47,7 @@
 block discarded – undo
47 47
         }
48 48
 
49 49
         $timezone = $input->getOption('timezone')
50
-            ? $input->getOption('timezone') :
51
-            $this->_scopeConfig->getValue('general/locale/timezone');
50
+            ? $input->getOption('timezone') : $this->_scopeConfig->getValue('general/locale/timezone');
52 51
 
53 52
         if (!$input->getOption('format')) {
54 53
             $output->writeln('<info>Times shown in <comment>' . $timezone . '</comment></info>');
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/InfoCommand.php 2 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -151,32 +151,32 @@
 block discarded – undo
151 151
     protected function addProductCount()
152 152
     {
153 153
         $this->infos['Product Count'] = $this->productFactory
154
-                                             ->create()
155
-                                             ->getCollection()
156
-                                             ->getSize();
154
+                                                ->create()
155
+                                                ->getCollection()
156
+                                                ->getSize();
157 157
     }
158 158
 
159 159
     protected function addCustomerCount()
160 160
     {
161 161
         $this->infos['Customer Count'] = $this->customerFactory->create()
162
-                                              ->getCollection()
163
-                                              ->getSize();
162
+                                                ->getCollection()
163
+                                                ->getSize();
164 164
     }
165 165
 
166 166
     protected function addCategoryCount()
167 167
     {
168 168
         $this->infos['Category Count'] = $this->categoryFactory
169
-                                              ->create()
170
-                                              ->getCollection()
171
-                                              ->getSize();
169
+                                                ->create()
170
+                                                ->getCollection()
171
+                                                ->getSize();
172 172
     }
173 173
 
174 174
     protected function addAttributeCount()
175 175
     {
176 176
         $this->infos['Attribute Count'] = $this->attributeFactory
177
-                                               ->create()
178
-                                               ->getCollection()
179
-                                               ->getSize();
177
+                                                ->create()
178
+                                                ->getCollection()
179
+                                                ->getSize();
180 180
     }
181 181
 
182 182
     protected function addCacheInfos()
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -103,7 +103,7 @@
 block discarded – undo
103 103
 
104 104
     public function hasInfo()
105 105
     {
106
-        return ! empty($this->infos);
106
+        return !empty($this->infos);
107 107
     }
108 108
 
109 109
     public function getInfo($key = null)
Please login to merge, or discard this patch.
src/N98/Util/Console/Helper/InjectionHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
             $argumentsToInject[] = $objectManager->get($parameter[1]);
33 33
         }
34 34
 
35
-        call_user_func_array([ $object, $methodName ], $argumentsToInject);
35
+        call_user_func_array([$object, $methodName], $argumentsToInject);
36 36
     }
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
tests/N98/Magento/Command/Cache/ListCommandTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -42,7 +42,7 @@
 block discarded – undo
42 42
         $disabledCacheTypes = 0;
43 43
 
44 44
         foreach ($cacheTypes as $cacheType) {
45
-            if (! $cacheType->getStatus()) {
45
+            if (!$cacheType->getStatus()) {
46 46
                 $disabledCacheTypes++;
47 47
             }
48 48
         }
Please login to merge, or discard this patch.
tests/N98/Magento/Command/Config/DeleteCommandTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -47,11 +47,11 @@  discard block
 block discarded – undo
47 47
             $commandTester = new CommandTester($setCommand);
48 48
             $commandTester->execute(
49 49
                 array(
50
-                     'command'    => $setCommand->getName(),
51
-                     'path'       => 'n98_magerun/foo/bar',
52
-                     '--scope'    => 'stores',
53
-                     '--scope-id'  => $store->getId(),
54
-                     'value'      => 'store-' . $store->getId(),
50
+                        'command'    => $setCommand->getName(),
51
+                        'path'       => 'n98_magerun/foo/bar',
52
+                        '--scope'    => 'stores',
53
+                        '--scope-id'  => $store->getId(),
54
+                        'value'      => 'store-' . $store->getId(),
55 55
                 )
56 56
             );
57 57
         }
@@ -59,9 +59,9 @@  discard block
 block discarded – undo
59 59
         $commandTester = new CommandTester($deleteCommand);
60 60
         $commandTester->execute(
61 61
             array(
62
-                 'command' => $deleteCommand->getName(),
63
-                 'path'    => 'n98_magerun/foo/bar',
64
-                 '--all'   => true,
62
+                    'command' => $deleteCommand->getName(),
63
+                    'path'    => 'n98_magerun/foo/bar',
64
+                    '--all'   => true,
65 65
             )
66 66
         );
67 67
 
Please login to merge, or discard this patch.
tests/N98/Magento/Command/Config/GetCommandTest.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -20,26 +20,26 @@  discard block
 block discarded – undo
20 20
         $commandTester = new CommandTester($setCommand);
21 21
         $commandTester->execute(
22 22
             array(
23
-                 'command' => $setCommand->getName(),
24
-                 'path'    => 'n98_magerun/foo/bar',
25
-                 'value'   => '1234',
23
+                    'command' => $setCommand->getName(),
24
+                    'path'    => 'n98_magerun/foo/bar',
25
+                    'value'   => '1234',
26 26
             )
27 27
         );
28 28
 
29 29
         $commandTester = new CommandTester($getCommand);
30 30
         $commandTester->execute(
31 31
             array(
32
-                 'command' => $getCommand->getName(),
33
-                 'path'    => 'n98_magerun/foo/bar',
32
+                    'command' => $getCommand->getName(),
33
+                    'path'    => 'n98_magerun/foo/bar',
34 34
             )
35 35
         );
36 36
         $this->assertContains('| n98_magerun/foo/bar | default | 0        | 1234  |', $commandTester->getDisplay());
37 37
 
38 38
         $commandTester->execute(
39 39
             array(
40
-                 'command'         => $getCommand->getName(),
41
-                 'path'            => 'n98_magerun/foo/bar',
42
-                 '--update-script' => true
40
+                    'command'         => $getCommand->getName(),
41
+                    'path'            => 'n98_magerun/foo/bar',
42
+                    '--update-script' => true
43 43
             )
44 44
         );
45 45
         $this->assertContains(
@@ -49,9 +49,9 @@  discard block
 block discarded – undo
49 49
 
50 50
         $commandTester->execute(
51 51
             array(
52
-                 'command'          => $getCommand->getName(),
53
-                 'path'             => 'n98_magerun/foo/bar',
54
-                 '--magerun-script' => true
52
+                    'command'          => $getCommand->getName(),
53
+                    'path'             => 'n98_magerun/foo/bar',
54
+                    '--magerun-script' => true
55 55
             )
56 56
         );
57 57
         $this->assertContains(
Please login to merge, or discard this patch.
tests/N98/Util/Console/Helper/Table/Renderer/RenderFactoryTest.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
 
23 23
         $invalidFormat = $renderFactory->create('invalid_format');
24 24
         $this->assertFalse($invalidFormat);
25
-   }
25
+    }
26 26
 
27 27
 }
28 28
 
Please login to merge, or discard this patch.
tests/N98/Util/FilesystemTest.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -219,11 +219,11 @@
 block discarded – undo
219 219
     public static function convertedBytesProvider()
220 220
     {
221 221
         return array(
222
-            array(20000000,     2,  '19.07M'),
223
-            array(20000000,     3,  '19.073M'),
224
-            array(2000000000,   2,  '1.86G'),
225
-            array(2,            2,  '2.00B'),
226
-            array(2048,         2,  '2.00K'),
222
+            array(20000000, 2, '19.07M'),
223
+            array(20000000, 3, '19.073M'),
224
+            array(2000000000, 2, '1.86G'),
225
+            array(2, 2, '2.00B'),
226
+            array(2048, 2, '2.00K'),
227 227
         );
228 228
     }
229 229
 }
Please login to merge, or discard this patch.
src/N98/Magento/Command/CommandAware.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -9,6 +9,7 @@
 block discarded – undo
9 9
     /**
10 10
      * @param OutputInterface $output
11 11
      * @param array $rows
12
+     * @return void
12 13
      */
13 14
     public function render(OutputInterface $output, array $rows);
14 15
 }
Please login to merge, or discard this patch.