| Conditions | 1 |
| Paths | 1 |
| Total Lines | 6 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 56 | 1 | public function getSQLDeclaration(array $fieldDeclaration, DBAL\Platforms\AbstractPlatform $platform) |
|
| 57 | { |
||
| 58 | 1 | $fieldDeclaration['length'] = $this->getLength(); |
|
| 59 | 1 | $fieldDeclaration['fixed'] = $this->isFixed(); |
|
| 60 | 1 | return $platform->getVarcharTypeDeclarationSQL($fieldDeclaration); |
|
| 61 | } |
||
| 62 | } |
||
| 63 |