Completed
Push — master ( f5b444...f489bc )
by Andrii
02:22
created
src/ThemeManager.php 2 patches
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -109,6 +109,7 @@
 block discarded – undo
109 109
      * Changes theme.
110 110
      *
111 111
      * @param string theme name
112
+     * @param string $name
112 113
      *
113 114
      * @throws InvalidConfigException
114 115
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -13,9 +13,7 @@
 block discarded – undo
13 13
 
14 14
 use hiqdev\thememanager\models\Settings;
15 15
 use Yii;
16
-use yii\base\Application;
17 16
 use yii\base\InvalidConfigException;
18
-use yii\base\Widget;
19 17
 use yii\web\AssetBundle;
20 18
 
21 19
 /**
Please login to merge, or discard this patch.
src/Theme.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -174,6 +174,9 @@
 block discarded – undo
174 174
         return substr($class, 0, strrpos($class, '\\')) . '\\models\\Settings';
175 175
     }
176 176
 
177
+    /**
178
+     * @param string $class
179
+     */
177 180
     public static function findSettingsClass($class)
178 181
     {
179 182
         $res = static::calcSettingsClass($class);
Please login to merge, or discard this patch.
src/widgets/LoginForm.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
70 70
         return $this->setValues('_disables', $values);
71 71
     }
72 72
 
73
+    /**
74
+     * @param string $name
75
+     */
73 76
     public function setValues($name, array $values)
74 77
     {
75 78
         foreach ($values as $action => $value) {
Please login to merge, or discard this patch.