Completed
Push — master ( 1f5d0b...702fb6 )
by Andrii
11:05
created
src/actions/ProxyAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@
 block discarded – undo
53 53
     }
54 54
 
55 55
     /**
56
-     * @return bool|string
56
+     * @return false|string
57 57
      */
58 58
     public function getPjaxUrl()
59 59
     {
Please login to merge, or discard this patch.
src/actions/SmartUpdateAction.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -91,7 +91,7 @@
 block discarded – undo
91 91
     }
92 92
 
93 93
     /**
94
-     * @return Model|SearchModelTrait
94
+     * @return \hiqdev\hiart\ActiveRecord
95 95
      */
96 96
     public function getSearchModel()
97 97
     {
Please login to merge, or discard this patch.
src/actions/SwitchRule.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -82,6 +82,9 @@  discard block
 block discarded – undo
82 82
         return $this->switch->controller->runAction($action);
83 83
     }
84 84
 
85
+    /**
86
+     * @param string $postfix
87
+     */
85 88
     public function run($postfix = null)
86 89
     {
87 90
         return $this->runAction($postfix);
@@ -91,7 +94,7 @@  discard block
 block discarded – undo
91 94
      * Setter for action. Saves the action to the controller.
92 95
      *
93 96
      * @param mixed $action action config.
94
-     * @param null $postfix
97
+     * @param string $postfix
95 98
      */
96 99
     public function setAction($action, $postfix = null)
97 100
     {
Please login to merge, or discard this patch.
src/actions/ViewAction.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 namespace hipanel\actions;
13 13
 
14 14
 use Yii;
15
-use yii\base\Model;
16 15
 use yii\data\ActiveDataProvider;
17 16
 use yii\web\BadRequestHttpException;
18 17
 use yii\web\NotFoundHttpException;
Please login to merge, or discard this patch.
src/base/Controller.php 1 patch
Doc Comments   +7 added lines, -2 removed lines patch added patch discarded remove patch
@@ -68,7 +68,6 @@  discard block
 block discarded – undo
68 68
     }
69 69
 
70 70
     /**
71
-     * @param string $submodel the submodel that will be added to the ClassName
72 71
      * @return string Main Model class name
73 72
      */
74 73
     public static function modelClassName()
@@ -94,7 +93,7 @@  discard block
 block discarded – undo
94 93
 
95 94
     /**
96 95
      * @param array $config config to be used to create the [[Model]]
97
-     * @return ActiveRecord|SearchModelTrait Search Model object
96
+     * @return ActiveRecord Search Model object
98 97
      */
99 98
     public static function searchModel($config = [])
100 99
     {
@@ -199,11 +198,17 @@  discard block
 block discarded – undo
199 198
         return $this->render('index');
200 199
     }
201 200
 
201
+    /**
202
+     * @param string $id
203
+     */
202 204
     public function setInternalAction($id, $action)
203 205
     {
204 206
         $this->_internalActions[$id] = $action;
205 207
     }
206 208
 
209
+    /**
210
+     * @param string $id
211
+     */
207 212
     public function hasInternalAction($id)
208 213
     {
209 214
         return array_key_exists($id, $this->_internalActions);
Please login to merge, or discard this patch.
src/base/CrudController.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -30,6 +30,9 @@
 block discarded – undo
30 30
     {
31 31
     }
32 32
 
33
+    /**
34
+     * @param string $name
35
+     */
33 36
     public function getRefs($name)
34 37
     {
35 38
         return Ref::getList($name);
Please login to merge, or discard this patch.
src/grid/CurrencyColumn.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -35,11 +35,18 @@
 block discarded – undo
35 35
 
36 36
     public $urlCallback;
37 37
 
38
+    /**
39
+     * @param string $type
40
+     */
38 41
     public function getColor($type)
39 42
     {
40 43
         return $this->colors[$type] ?: $type;
41 44
     }
42 45
 
46
+    /**
47
+     * @param Model $model
48
+     * @param integer $index
49
+     */
43 50
     public function getUrl($model, $key, $index)
44 51
     {
45 52
         return $this->urlCallback ? call_user_func($this->urlCallback, $model, $key, $index) : null;
Please login to merge, or discard this patch.
src/widgets/BulkButtons.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
13 13
 
14 14
 use yii\base\Widget;
15 15
 use yii\helpers\Html;
16
-use yii\helpers\Json;
17 16
 
18 17
 class BulkButtons extends Widget
19 18
 {
Please login to merge, or discard this patch.
src/widgets/Gravatar.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -34,6 +34,9 @@
 block discarded – undo
34 34
         return $this->_emailHash;
35 35
     }
36 36
 
37
+    /**
38
+     * @param string $email
39
+     */
37 40
     public static function hashEmail($email)
38 41
     {
39 42
         $email = strtolower(trim($email));
Please login to merge, or discard this patch.