Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
- Chg #414: Rename `DMLQueryBuilder::insertWithReturningPks()` to `DMLQueryBuilder::insertReturningPks()` (@Tigrov)
- Enh #415: Implement `CaseExpressionBuilder` class (@Tigrov)
- Enh #420: Provide `yiisoft/db-implementation` virtual package (@vjik)
- Enh #424: Adapt to specific condition interfaces removing in `yiisoft/db` package (@vjik)

## 1.3.0 March 21, 2024

Expand Down
6 changes: 3 additions & 3 deletions src/Builder/LikeConditionBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@

namespace Yiisoft\Db\Pgsql\Builder;

use Yiisoft\Db\QueryBuilder\Condition\Interface\LikeConditionInterface;
use Yiisoft\Db\QueryBuilder\Condition\LikeCondition;

/**
* Build an object of {@see LikeConditionInterface} into SQL expressions for PostgreSQL Server.
* Build an object of {@see LikeCondition} into SQL expressions for PostgreSQL Server.
*/
final class LikeConditionBuilder extends \Yiisoft\Db\QueryBuilder\Condition\Builder\LikeConditionBuilder
{
protected function parseOperator(LikeConditionInterface $expression): array
protected function parseOperator(LikeCondition $expression): array
{
[$andor, $not, $operator] = parent::parseOperator($expression);

Expand Down
Loading