Completed
Pull Request — master (#15633)
by Robert
10:17
created
framework/grid/GridView.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -376,7 +376,7 @@  discard block
 block discarded – undo
376 376
 
377 377
     /**
378 378
      * Renders the caption element.
379
-     * @return bool|string the rendered caption element or `false` if no caption element should be rendered.
379
+     * @return string|false the rendered caption element or `false` if no caption element should be rendered.
380 380
      */
381 381
     public function renderCaption()
382 382
     {
@@ -389,7 +389,7 @@  discard block
 block discarded – undo
389 389
 
390 390
     /**
391 391
      * Renders the column group HTML.
392
-     * @return bool|string the column group HTML or `false` if no column group should be rendered.
392
+     * @return string|false the column group HTML or `false` if no column group should be rendered.
393 393
      */
394 394
     public function renderColumnGroup()
395 395
     {
Please login to merge, or discard this patch.
framework/web/DbSession.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -13,7 +13,6 @@
 block discarded – undo
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.
Please login to merge, or discard this patch.
framework/helpers/BaseFileHelper.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -773,7 +773,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.