Completed
Branch develop (14e095)
by Tom
04:59
created
src/N98/Magento/Command/System/Cron/AbstractCronCommand.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -55,7 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * Get job configuration from XML and database. Expression priority is given to the database.
57 57
      *
58
-     * @return Traversable|Mage_Core_Model_Config_Element[]
58
+     * @return AppendIterator
59 59
      */
60 60
     private function getJobConfigElements()
61 61
     {
Please login to merge, or discard this patch.
src/N98/Util/VerifyOrDie.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     /**
51 51
      * @param string $name
52 52
      * @param string $internalType
53
-     * @param mixed $subject
53
+     * @param string $subject
54 54
      */
55 55
     private static function argumentType($name, $internalType, $subject)
56 56
     {
@@ -63,6 +63,9 @@  discard block
 block discarded – undo
63 63
 
64 64
     }
65 65
 
66
+    /**
67
+     * @param string $message
68
+     */
66 69
     private static function violation($message)
67 70
     {
68 71
         throw new RuntimeException($message);
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/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/Util/Console/Helper/Table/Renderer/RendererInterface.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 headers are expected to be the keys of the first row.
12
+     * @return void
12 13
      */
13 14
     public function render(OutputInterface $output, array $rows);
14 15
 }
Please login to merge, or discard this patch.
src/N98/View/PhpView.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -16,7 +16,7 @@  discard block
 block discarded – undo
16 16
 
17 17
     /**
18 18
      * @param string $template
19
-     * @return Php
19
+     * @return PhpView
20 20
      */
21 21
     public function setTemplate($template)
22 22
     {
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
      * @param string $key
30 30
      * @param mixed $value
31 31
      *
32
-     * @return Php
32
+     * @return PhpView
33 33
      */
34 34
     public function assign($key, $value)
35 35
     {
Please login to merge, or discard this patch.
src/N98/View/View.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -4,6 +4,13 @@
 block discarded – undo
4 4
 
5 5
 interface View
6 6
 {
7
+    /**
8
+     * @return PhpView
9
+     */
7 10
     public function assign($key, $value);
11
+
12
+    /**
13
+     * @return string
14
+     */
8 15
     public function render();
9 16
 }
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 headers are expected to be the keys of the first row.
12
+     * @return void
12 13
      */
13 14
     public function render(OutputInterface $output, array $rows);
14 15
 }
Please login to merge, or discard this patch.