Completed
Push — master ( 31d97f...35cf66 )
by Vitaly
09:49
created
src/View.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -72,7 +72,7 @@
 block discarded – undo
72 72
 /**
73 73
  * Figure out if module view variable value is correctly set for view output
74 74
  *
75
- * @param \samson\core\iModule $m     Pointer to module
75
+ * @param samson\core\Module|null $m     Pointer to module
76 76
  * @param string               $name  View variable name
77 77
  * @param mixed                $value Value to compare
78 78
  *
Please login to merge, or discard this patch.
src/Module.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -159,6 +159,9 @@  discard block
 block discarded – undo
159 159
         return $this;
160 160
     }
161 161
 
162
+    /**
163
+     * @param string $viewPath
164
+     */
162 165
     public function view($viewPath)
163 166
     {
164 167
         if (is_a($viewPath, ViewInterface::class)) {
@@ -250,7 +253,7 @@  discard block
 block discarded – undo
250 253
     }
251 254
 
252 255
     /**
253
-     * @param null $controller
256
+     * @param string|null $controller
254 257
      *
255 258
      * @throws ControllerActionNotFound
256 259
      */
Please login to merge, or discard this patch.
src/Core.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -670,6 +670,9 @@
 block discarded – undo
670 670
         return array('module_stack', 'render_mode');
671 671
     }
672 672
 
673
+    /**
674
+     * @param string $path
675
+     */
673 676
     protected function createMetadata($class, $name, $path)
674 677
     {
675 678
         $metadata = new ClassMetadata();
Please login to merge, or discard this patch.