1 | <?php |
||
19 | class Result implements ExportableInterface { |
||
20 | |||
21 | /** |
||
22 | * @var int |
||
23 | */ |
||
24 | private $instability; |
||
25 | |||
26 | /** |
||
27 | * @inheritdoc |
||
28 | */ |
||
29 | public function asArray() |
||
35 | |||
36 | /** |
||
37 | * @param int $instability |
||
38 | */ |
||
39 | public function setInstability($instability) |
||
43 | |||
44 | /** |
||
45 | * @return int |
||
46 | */ |
||
47 | public function getInstability() |
||
51 | |||
52 | } |