| @@ -53,7 +53,7 @@ | ||
| 53 | 53 | } | 
| 54 | 54 | |
| 55 | 55 | /** | 
| 56 | - * @return bool|string | |
| 56 | + * @return false|string | |
| 57 | 57 | */ | 
| 58 | 58 | public function getPjaxUrl() | 
| 59 | 59 |      { | 
| @@ -82,6 +82,9 @@ discard block | ||
| 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 | ||
| 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 |      { | 
| @@ -12,7 +12,6 @@ | ||
| 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; | 
| @@ -35,11 +35,18 @@ | ||
| 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; | 
| @@ -13,7 +13,6 @@ | ||
| 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 |  { | 
| @@ -34,6 +34,9 @@ | ||
| 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)); | 
| @@ -16,7 +16,6 @@ | ||
| 16 | 16 | use yii\helpers\ArrayHelper; | 
| 17 | 17 | use yii\helpers\Html; | 
| 18 | 18 | use yii\helpers\Json; | 
| 19 | -use yii\helpers\Url; | |
| 20 | 19 | use yii\web\JsExpression; | 
| 21 | 20 | |
| 22 | 21 | class Select2 extends Widget | 
| @@ -18,7 +18,6 @@ | ||
| 18 | 18 | use Yii; | 
| 19 | 19 | use yii\base\InvalidParamException; | 
| 20 | 20 | use yii\filters\AccessControl; | 
| 21 | -use yii\filters\VerbFilter; | |
| 22 | 21 | use yii\web\BadRequestHttpException; | 
| 23 | 22 | use yii\web\Controller; | 
| 24 | 23 | |
| @@ -206,6 +206,9 @@ | ||
| 206 | 206 | return $translation; | 
| 207 | 207 | } | 
| 208 | 208 | |
| 209 | + /** | |
| 210 | + * @param string $dirName | |
| 211 | + */ | |
| 209 | 212 | protected function saveMessagesToPHPEnhanced($messages, $dirName, $overwrite, $removeUnused, $sort, $language) | 
| 210 | 213 |      { | 
| 211 | 214 |          foreach ($messages as $category => $msgs) { |