Completed
Push — master ( eae015...8c1881 )
by Andrii
13:55
created
src/base/Controller.php 1 patch
Doc Comments   +6 added lines, -1 removed lines patch added patch discarded remove patch
@@ -70,7 +70,6 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param string $submodel the submodel that will be added to the ClassName
74 73
      * @return string Main Model class name
75 74
      */
76 75
     public static function modelClassName()
@@ -201,11 +200,17 @@  discard block
 block discarded – undo
201 200
         return $this->render('index');
202 201
     }
203 202
 
203
+    /**
204
+     * @param string $id
205
+     */
204 206
     public function setInternalAction($id, $action)
205 207
     {
206 208
         $this->_internalActions[$id] = $action;
207 209
     }
208 210
 
211
+    /**
212
+     * @param string $id
213
+     */
209 214
     public function hasInternalAction($id)
210 215
     {
211 216
         return array_key_exists($id, $this->_internalActions);
Please login to merge, or discard this patch.