1 | <?php |
||
11 | class Change { |
||
12 | private $code; |
||
13 | |||
14 | private $path; |
||
15 | |||
16 | /** |
||
17 | * Change constructor. |
||
18 | * |
||
19 | * @param $code |
||
20 | * @param $path |
||
21 | */ |
||
22 | public function __construct($code, $path) { |
||
26 | |||
27 | /** |
||
28 | * @return integer |
||
29 | */ |
||
30 | public function getCode() { |
||
33 | |||
34 | /** |
||
35 | * @return string |
||
36 | */ |
||
37 | public function getPath() { |
||
40 | } |
||
41 |