Skip to content

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
StyleCIBot committed Jun 29, 2024
1 parent d42f5a6 commit 44c642e
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion tests/CommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
use Yiisoft\Db\Exception\Exception;
use Yiisoft\Db\Exception\InvalidConfigException;
use Yiisoft\Db\Exception\NotSupportedException;
use Yiisoft\Db\Expression\JsonExpression;
use Yiisoft\Db\Pgsql\Connection;
use Yiisoft\Db\Pgsql\Dsn;
use Yiisoft\Db\Pgsql\Driver;
Expand Down
2 changes: 1 addition & 1 deletion tests/Provider/QueryBuilderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,7 @@ public static function overlapsCondition(): array

$data['null'][1] = 0;
$data['expression'][0] = new Expression("'{0,1,2,7}'");
$data['query expression'][0] = (new Query(static::getDb()))->select(new ArrayExpression([0,1,2,7]));
$data['query expression'][0] = (new Query(self::getDb()))->select(new ArrayExpression([0,1,2,7]));
$data[] = [new Expression('ARRAY[0,1,2,7]'), 1];
$data[] = [new ArrayExpression([0,1,2,7]), 1];

Expand Down

0 comments on commit 44c642e

Please sign in to comment.