1 | <?php |
||
10 | class InverseCalculator extends Validator |
||
11 | { |
||
12 | private $belfioreCode = null; |
||
13 | |||
14 | /** |
||
15 | * Create an InverseCalculator instance. |
||
16 | * |
||
17 | * @param string $codiceFiscale the codice fiscale to validate |
||
18 | * @param array $properties An array with additional properties. |
||
19 | */ |
||
20 | 15 | public function __construct($codiceFiscale, $properties = array()) |
|
31 | |||
32 | /** |
||
33 | * Return the belfiore code |
||
34 | * |
||
35 | * @return string |
||
36 | */ |
||
37 | 15 | public function getBelfioreCode() |
|
41 | |||
42 | /** |
||
43 | * Return the Subject calculated from codice fiscale |
||
44 | * |
||
45 | * @return \CodiceFiscale\Subject |
||
46 | */ |
||
47 | 15 | public function getSubject() |
|
55 | } |
||
56 |