@@ -258,7 +258,7 @@ |
||
| 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 | } |
@@ -3,6 +3,10 @@ |
||
| 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)) { |
@@ -8,6 +8,7 @@ |
||
| 8 | 8 | { |
| 9 | 9 | /** |
| 10 | 10 | * @param Command $command |
| 11 | + * @return void |
|
| 11 | 12 | */ |
| 12 | 13 | public function setCommand(Command $command); |
| 13 | 14 | } |
@@ -6,6 +6,7 @@ |
||
| 6 | 6 | { |
| 7 | 7 | /** |
| 8 | 8 | * @param array $commandConfig |
| 9 | + * @return void |
|
| 9 | 10 | */ |
| 10 | 11 | public function setCommandConfig(array $commandConfig); |
| 11 | 12 | } |
@@ -6,9 +6,18 @@ |
||
| 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 | } |
@@ -40,7 +40,7 @@ |
||
| 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 | { |
@@ -11,6 +11,7 @@ |
||
| 11 | 11 | { |
| 12 | 12 | /** |
| 13 | 13 | * @param ResultCollection $results |
| 14 | + * @return void |
|
| 14 | 15 | */ |
| 15 | 16 | public function check(ResultCollection $results); |
| 16 | 17 | } |
@@ -14,6 +14,6 @@ |
||
| 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 | } |
@@ -4,11 +4,7 @@ |
||
| 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 |