Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Utf8Text | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace Satag\AmicronEntityBundle\Doctrine; |
| 6 | |
| 7 | use Doctrine\DBAL\Types\TextType; |
| 8 | |
| 9 | /** |
| 10 | * Text type for Amicron Firebird columns. |
| 11 | * |
| 12 | * Encoding between UTF-8 (PHP) and Windows-1252 (Firebird wire) is handled |
| 13 | * transparently by CharsetMiddleware at the DBAL driver level (v3.11.0-RC.2+). |
| 14 | * This type therefore acts as a plain identity pass-through and exists only |
| 15 | * to preserve the 'text' type registration for entity column mappings. |
| 16 | */ |
| 17 | class Utf8Text extends TextType |
| 18 | { |
| 19 | } |