Total Complexity | 6 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | final class Quoter extends BaseQuoter implements QuoterInterface |
||
15 | { |
||
16 | /** |
||
17 | * @psalm-param string[] $columnQuoteCharacter |
||
18 | * @psalm-param string[] $tableQuoteCharacter |
||
19 | */ |
||
20 | 407 | public function __construct( |
|
21 | array $columnQuoteCharacter, |
||
22 | array $tableQuoteCharacter, |
||
23 | string $tablePrefix = '' |
||
24 | ) { |
||
25 | 407 | parent::__construct($columnQuoteCharacter, $tableQuoteCharacter, $tablePrefix); |
|
26 | } |
||
27 | |||
28 | 213 | public function quoteColumnName(string $name): string |
|
35 | } |
||
36 | |||
37 | 120 | protected function getTableNameParts(string $name): array |
|
49 |