1 | <?php |
||
10 | class NetherlandsDetector extends AbstractDetector |
||
11 | { |
||
12 | const PLATE_SIDECODE_1 = 1; |
||
13 | const PLATE_SIDECODE_2 = 2; |
||
14 | const PLATE_SIDECODE_3 = 3; |
||
15 | const PLATE_SIDECODE_4 = 4; |
||
16 | const PLATE_SIDECODE_5 = 5; |
||
17 | const PLATE_SIDECODE_6 = 6; |
||
18 | const PLATE_SIDECODE_7 = 7; |
||
19 | const PLATE_SIDECODE_8 = 8; |
||
20 | const PLATE_SIDECODE_9 = 9; |
||
21 | const PLATE_SIDECODE_10 = 10; |
||
22 | const PLATE_SIDECODE_11 = 11; |
||
23 | const PLATE_SIDECODE_12 = 12; |
||
24 | const PLATE_SIDECODE_13 = 13; |
||
25 | const PLATE_SIDECODE_14 = 14; |
||
26 | |||
27 | /** |
||
28 | * @return LicensePlateResponse |
||
29 | */ |
||
30 | public function parse() |
||
59 | |||
60 | /** |
||
61 | * @param $regex |
||
62 | * @param $resultSidecode |
||
63 | * |
||
64 | * @return LicensePlateResponse |
||
65 | */ |
||
66 | public function checkSidecode($regex, $resultSidecode) |
||
75 | } |
||
76 |