@@ -211,6 +211,7 @@ discard block |
||
211 | 211 | /** |
212 | 212 | * {@inheritdoc} |
213 | 213 | * @since 2.0.8 |
214 | + * @param string $comment |
|
214 | 215 | */ |
215 | 216 | public function addCommentOnColumn($table, $column, $comment) |
216 | 217 | { |
@@ -227,6 +228,7 @@ discard block |
||
227 | 228 | /** |
228 | 229 | * {@inheritdoc} |
229 | 230 | * @since 2.0.8 |
231 | + * @param string $comment |
|
230 | 232 | */ |
231 | 233 | public function addCommentOnTable($table, $comment) |
232 | 234 | { |
@@ -14,7 +14,6 @@ |
||
14 | 14 | use yii\db\Expression; |
15 | 15 | use yii\db\Query; |
16 | 16 | use yii\helpers\StringHelper; |
17 | -use yii\db\ExpressionInterface; |
|
18 | 17 | |
19 | 18 | /** |
20 | 19 | * QueryBuilder is the query builder for Oracle databases. |
@@ -245,6 +245,7 @@ |
||
245 | 245 | |
246 | 246 | /** |
247 | 247 | * {@inheritdoc} |
248 | + * @param string $table |
|
248 | 249 | */ |
249 | 250 | public function insert($table, $columns, &$params) |
250 | 251 | { |
@@ -773,7 +773,7 @@ |
||
773 | 773 | * @param string $pattern |
774 | 774 | * @param bool $caseSensitive |
775 | 775 | * @throws InvalidArgumentException |
776 | - * @return array with keys: (string) pattern, (int) flags, (int|bool) firstWildcard |
|
776 | + * @return string with keys: (string) pattern, (int) flags, (int|bool) firstWildcard |
|
777 | 777 | */ |
778 | 778 | private static function parseExcludePattern($pattern, $caseSensitive) |
779 | 779 | { |
@@ -13,7 +13,6 @@ |
||
13 | 13 | use yii\db\PdoValue; |
14 | 14 | use yii\db\Query; |
15 | 15 | use yii\di\Instance; |
16 | -use yii\helpers\ArrayHelper; |
|
17 | 16 | |
18 | 17 | /** |
19 | 18 | * DbSession extends [[Session]] by using database as session data storage. |