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