1 | <?php |
||
7 | class FreeSpace extends AbstractModel |
||
8 | { |
||
9 | /** |
||
10 | * @var string |
||
11 | */ |
||
12 | private $path; |
||
13 | |||
14 | /** |
||
15 | * @var integer |
||
16 | */ |
||
17 | private $size; |
||
18 | |||
19 | /** |
||
20 | * Gets the value of path. |
||
21 | * |
||
22 | * @return string |
||
23 | */ |
||
24 | public function getPath() |
||
28 | |||
29 | /** |
||
30 | * Sets the value of path. |
||
31 | * |
||
32 | * @param string $path the path |
||
33 | */ |
||
34 | public function setPath($path) |
||
38 | |||
39 | /** |
||
40 | * Gets the value of size. |
||
41 | * |
||
42 | * @return integer |
||
43 | */ |
||
44 | public function getSize() |
||
48 | |||
49 | /** |
||
50 | * Sets the value of size. |
||
51 | * |
||
52 | * @param integer $size the size |
||
53 | */ |
||
54 | public function setSize($size) |
||
58 | |||
59 | /** |
||
60 | * {@inheritDoc} |
||
61 | */ |
||
62 | public static function getMapping() |
||
69 | } |
||
70 |