Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| AddressType | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | /** |
| 3 | * Jingga |
| 4 | * |
| 5 | * PHP Version 8.1 |
| 6 | * |
| 7 | * @package phpOMS\Stdlib\Base |
| 8 | * @copyright Dennis Eichhorn |
| 9 | * @license OMS License 2.0 |
| 10 | * @version 1.0.0 |
| 11 | * @link https://jingga.app |
| 12 | */ |
| 13 | declare(strict_types=1); |
| 14 | |
| 15 | namespace phpOMS\Stdlib\Base; |
| 16 | |
| 17 | /** |
| 18 | * Address type enum. |
| 19 | * |
| 20 | * @package phpOMS\Stdlib\Base |
| 21 | * @license OMS License 2.0 |
| 22 | * @link https://jingga.app |
| 23 | * @since 1.0.0 |
| 24 | */ |
| 25 | abstract class AddressType extends Enum |
| 26 | { |
| 27 | public const HOME = 1; |
| 28 | |
| 29 | public const BUSINESS = 2; |
| 30 | |
| 31 | public const SHIPPING = 3; |
| 32 | |
| 33 | public const BILLING = 4; |
| 34 | |
| 35 | public const WORK = 5; |
| 36 | |
| 37 | public const CONTRACT = 6; |
| 38 | |
| 39 | public const OTHER = 7; |
| 40 | |
| 41 | public const EDUCATION = 8; |
| 42 | } |