Total Complexity | 3 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
12 | final class Statement extends AbstractStatementMiddleware |
||
13 | { |
||
14 | /** |
||
15 | * @var array<int,mixed>|array<string,mixed> |
||
16 | */ |
||
17 | private array $params = []; |
||
18 | |||
19 | public function __construct( |
||
20 | StatementInterface $statement, |
||
21 | private readonly string $sql, |
||
22 | ) { |
||
23 | parent::__construct($statement); |
||
24 | } |
||
25 | |||
26 | public function bindValue(int|string $param, mixed $value, ParameterType $type): void |
||
31 | } |
||
32 | |||
33 | public function execute(): Result |
||
47 |