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 | public function __construct($codiceFiscale, $properties = array()) { |
||
30 | |||
31 | /** |
||
32 | * Return the belfiore code |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | public function getBelfioreCode() { |
||
39 | |||
40 | /** |
||
41 | * Return the Subject calculated from codice fiscale |
||
42 | * |
||
43 | * @return \CodiceFiscale\Subject |
||
44 | */ |
||
45 | public function getSubject(){ |
||
52 | |||
53 | } |
||
54 |