File tree Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Expand file tree Collapse file tree 2 files changed +2
-8
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ final class InConditionBuilder extends \Yiisoft\Db\QueryBuilder\Condition\Builde
24
24
/**
25
25
* The Method builds the raw SQL from the $expression that won't be additionally escaped or quoted.
26
26
*
27
- * @param ExpressionInterface $expression The expression to build.
27
+ * @param InConditionInterface $expression The expression to build.
28
28
* @param array $params The binding parameters.
29
29
*
30
30
* @throws Exception
@@ -33,8 +33,6 @@ final class InConditionBuilder extends \Yiisoft\Db\QueryBuilder\Condition\Builde
33
33
* @throws NotSupportedException
34
34
*
35
35
* @return string The raw SQL that won't be additionally escaped or quoted.
36
- *
37
- * @psalm-param InConditionInterface $expression
38
36
*/
39
37
public function build (ExpressionInterface $ expression , array &$ params = []): string
40
38
{
Original file line number Diff line number Diff line change 4
4
5
5
namespace Yiisoft \Db \Oracle \Builder ;
6
6
7
- use Exception ;
8
7
use Yiisoft \Db \Expression \ExpressionInterface ;
9
8
use Yiisoft \Db \QueryBuilder \Condition \Interface \LikeConditionInterface ;
10
9
use Yiisoft \Db \QueryBuilder \QueryBuilderInterface ;
@@ -34,10 +33,7 @@ public function __construct(private QueryBuilderInterface $queryBuilder)
34
33
parent ::__construct ($ queryBuilder , $ this ->getEscapeSql ());
35
34
}
36
35
37
- /**
38
- * @throws Exception
39
- */
40
- public function build (LikeConditionInterface $ expression , array &$ params = []): string
36
+ public function build (ExpressionInterface $ expression , array &$ params = []): string
41
37
{
42
38
if (!isset ($ this ->escapingReplacements ['\\' ])) {
43
39
/*
You can’t perform that action at this time.
0 commit comments