Completed
Push — master ( ce0bc2...735a27 )
by Dmitry
09:00
created
src/base/Controller.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -16,7 +16,6 @@
 block discarded – undo
16 16
 use hiqdev\hiart\ActiveRecord;
17 17
 use Yii;
18 18
 use yii\di\Instance;
19
-use yii\filters\AccessControl;
20 19
 use yii\helpers\Inflector;
21 20
 use yii\web\NotFoundHttpException;
22 21
 
Please login to merge, or discard this patch.
src/components/SettingsStorage.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -32,6 +32,7 @@  discard block
 block discarded – undo
32 32
 
33 33
     /**
34 34
      * @inheritdoc
35
+     * @param string $key
35 36
      */
36 37
     public function setBounded($key, $value)
37 38
     {
@@ -57,6 +58,7 @@  discard block
 block discarded – undo
57 58
 
58 59
     /**
59 60
      * @inheritdoc
61
+     * @param string $key
60 62
      */
61 63
     public function getBounded($key)
62 64
     {
Please login to merge, or discard this patch.