Completed
Branch develop (8c5f7e)
by Tom
04:29
created
src/N98/Util/Console/Helper/DatabaseHelper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -258,7 +258,7 @@
 block discarded – undo
258 258
                         $definitions,
259 259
                         $resolved
260 260
                     );
261
-                    $resolvedList    = array_merge($resolvedList, $tables);
261
+                    $resolvedList = array_merge($resolvedList, $tables);
262 262
                 }
263 263
                 continue;
264 264
             }
Please login to merge, or discard this patch.
src/bootstrap.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -3,6 +3,10 @@
 block discarded – undo
3 3
 if (!class_exists('N98_Magerun_Bootstrap')) {
4 4
     class N98_Magerun_Bootstrap
5 5
     {
6
+
7
+        /**
8
+         * @param string $file
9
+         */
6 10
         public static function includeIfExists($file)
7 11
         {
8 12
             if (file_exists($file)) {
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
@@ -8,6 +8,7 @@
 block discarded – undo
8 8
 {
9 9
     /**
10 10
      * @param Command $command
11
+     * @return void
11 12
      */
12 13
     public function setCommand(Command $command);
13 14
 }
Please login to merge, or discard this patch.
src/N98/Magento/Command/CommandConfigAware.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -6,6 +6,7 @@
 block discarded – undo
6 6
 {
7 7
     /**
8 8
      * @param array $commandConfig
9
+     * @return void
9 10
      */
10 11
     public function setCommandConfig(array $commandConfig);
11 12
 }
Please login to merge, or discard this patch.
Magento/Command/Developer/Setup/Script/Attribute/EntityType/EntityType.php 1 patch
Doc Comments   +9 added lines patch added patch discarded remove patch
@@ -6,9 +6,18 @@
 block discarded – undo
6 6
 {
7 7
     /**
8 8
      * @param \Mage_Eav_Model_Entity_Attribute $attribute
9
+     * @return void
9 10
      */
10 11
     public function __construct(\Mage_Eav_Model_Entity_Attribute $attribute);
12
+
13
+    /**
14
+     * @return void
15
+     */
11 16
     public function setReadConnection($connection);
12 17
     public function getWarnings();
18
+
19
+    /**
20
+     * @return string
21
+     */
13 22
     public function generateCode();
14 23
 }
Please login to merge, or discard this patch.
src/N98/Magento/Command/Indexer/AbstractIndexerCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
      * Returns a readable runtime
41 41
      *
42 42
      * @param $indexer
43
-     * @return mixed
43
+     * @return string
44 44
      */
45 45
     protected function getRuntime($indexer)
46 46
     {
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Check/SimpleCheck.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * @param ResultCollection $results
14
+     * @return void
14 15
      */
15 16
     public function check(ResultCollection $results);
16 17
 }
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Check/StoreCheck.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,6 +14,6 @@
 block discarded – undo
14 14
      * @param \Mage_Core_Model_Store $store
15 15
      *
16 16
      * @return
17
-     */
17
+     void
18 18
     public function check(ResultCollection $results, \Mage_Core_Model_Store $store);
19 19
 }
Please login to merge, or discard this patch.
src/N98/Magento/Command/System/Setup/AbstractSetupCommand.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -4,11 +4,7 @@
 block discarded – undo
4 4
 
5 5
 use InvalidArgumentException;
6 6
 use N98\Magento\Command\AbstractMagentoCommand;
7
-use Symfony\Component\Console\Input\InputArgument;
8 7
 use Symfony\Component\Console\Input\InputInterface;
9
-use Symfony\Component\Console\Input\InputOption;
10
-use Symfony\Component\Console\Output\OutputInterface;
11
-use N98\Util\Console\Helper\Table\Renderer\RendererFactory;
12 8
 
13 9
 /**
14 10
  * Class AbstractSetupCommand
Please login to merge, or discard this patch.