File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 47
47
- Chg #414 : Rename ` DMLQueryBuilder::insertWithReturningPks() ` to ` DMLQueryBuilder::insertReturningPks() ` (@Tigrov )
48
48
- Enh #415 : Implement ` CaseExpressionBuilder ` class (@Tigrov )
49
49
- Enh #420 : Provide ` yiisoft/db-implementation ` virtual package (@vjik )
50
+ - Enh #424 : Adapt to specific condition interfaces removing in ` yiisoft/db ` package (@vjik )
50
51
51
52
## 1.3.0 March 21, 2024
52
53
Original file line number Diff line number Diff line change 4
4
5
5
namespace Yiisoft \Db \Pgsql \Builder ;
6
6
7
- use Yiisoft \Db \QueryBuilder \Condition \Interface \ LikeConditionInterface ;
7
+ use Yiisoft \Db \QueryBuilder \Condition \LikeCondition ;
8
8
9
9
/**
10
- * Build an object of {@see LikeConditionInterface } into SQL expressions for PostgreSQL Server.
10
+ * Build an object of {@see LikeCondition } into SQL expressions for PostgreSQL Server.
11
11
*/
12
12
final class LikeConditionBuilder extends \Yiisoft \Db \QueryBuilder \Condition \Builder \LikeConditionBuilder
13
13
{
14
- protected function parseOperator (LikeConditionInterface $ expression ): array
14
+ protected function parseOperator (LikeCondition $ expression ): array
15
15
{
16
16
[$ andor , $ not , $ operator ] = parent ::parseOperator ($ expression );
17
17
You can’t perform that action at this time.
0 commit comments