Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| Utf8String | 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\StringType; |
| 8 | |
| 9 | /** |
| 10 | * String 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. This type |
| 14 | * therefore acts as a plain identity pass-through and exists only to preserve |
| 15 | * the 'string' type registration for entity column mappings. |
| 16 | * |
| 17 | * Supported characters inside Amicron Applications: |
| 18 | * |
| 19 | * !"#$%&'()*+,-./ |
| 20 | * 0123456789 |
| 21 | * :;<=>? |
| 22 | * |
| 23 | * @ABCDEFGHIJKLMNOPQRSTUVWXYZ |
| 24 | * [\]^_` |
| 25 | * abcdefghijklmnopqrstuvwxyz |
| 26 | * { | } ~ € ‚ ƒ „ … † ‡ ˆ |
| 27 | * ‰ Š ‹ Œ Ž ' ' " " • – — |
| 28 | * ˜ ™ š › œ ž Ÿ ¡ ¢ £ ¤ ¥ |
| 29 | * ¦ § ¨ © ª « ¬ ® ¯ ° ± ² ³ |
| 30 | * ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ |
| 31 | * À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï |
| 32 | * Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß |
| 33 | * à á â ã ä å æ ç è é ê ë ì í î ï |
| 34 | * ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ |
| 35 | */ |
| 36 | class Utf8String extends StringType |
| 37 | { |
| 38 | } |