| 1 | <?php |
||
| 5 | abstract class State implements StateInterface |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | private $state; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var int |
||
| 14 | */ |
||
| 15 | private $length; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var string |
||
| 19 | */ |
||
| 20 | private $regex; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @var string |
||
| 24 | */ |
||
| 25 | private $format; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var int |
||
| 29 | */ |
||
| 30 | private $numberOfDigits; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * State constructor. |
||
| 34 | * |
||
| 35 | * @param string $state |
||
| 36 | * @param int $length |
||
| 37 | * @param int $numberOfDigits |
||
| 38 | * @param string $regex |
||
| 39 | * @param string $format |
||
| 40 | */ |
||
| 41 | 476 | public function __construct($state, $length, $numberOfDigits, $regex, $format) |
|
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | 476 | public function getState() |
|
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | 463 | public function getLength() |
|
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | 39 | public function getRegex() |
|
| 73 | |||
| 74 | /** |
||
| 75 | * {@inheritdoc} |
||
| 76 | */ |
||
| 77 | 39 | public function getFormat() |
|
| 81 | |||
| 82 | /** |
||
| 83 | * {@inheritdoc} |
||
| 84 | */ |
||
| 85 | 476 | public function getNumberOfDigits() |
|
| 89 | |||
| 90 | /** |
||
| 91 | * {@inheritdoc} |
||
| 92 | */ |
||
| 93 | 470 | public function normalizeNumber($number) |
|
| 97 | |||
| 98 | /** |
||
| 99 | * {@inheritdoc} |
||
| 100 | */ |
||
| 101 | 431 | public function extractBaseNumber($number) |
|
| 105 | |||
| 106 | /** |
||
| 107 | * {@inheritdoc} |
||
| 108 | */ |
||
| 109 | 469 | public function extractCheckerDigit($number) |
|
| 113 | } |
||
| 114 |