Total Complexity | 1 |
Total Lines | 17 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | final class StatementInfo |
||
11 | { |
||
12 | /** |
||
13 | * @param Parser $parser The parser used to analyze the statement. |
||
14 | * @param Statement|null $statement The first statement resulted from parsing. |
||
15 | * @param array[] $selectTables The real name of the tables selected; if there are no table names in the |
||
16 | * `SELECT` expressions, the table names are fetched from the `FROM` expressions |
||
17 | * @psalm-param list<array{string|null, string|null}> $selectTables |
||
18 | * @psalm-param list<string|null> $selectExpressions |
||
19 | */ |
||
20 | 4 | public function __construct( |
|
29 |