Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
64 | 6 | public function getSQLDeclaration(array $fieldDeclaration, DBAL\Platforms\AbstractPlatform $platform) |
|
65 | { |
||
66 | 6 | $fieldDeclaration['length'] = $this->getLength(); |
|
67 | 6 | $fieldDeclaration['fixed'] = $this->isFixed(); |
|
68 | 6 | return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration); |
|
69 | } |
||
70 | } |
||
71 |