1 | <?php |
||
7 | class Fact extends Model |
||
8 | { |
||
9 | protected $fact = null; |
||
10 | |||
11 | /** |
||
12 | * Constructor |
||
13 | * |
||
14 | * @param array $data |
||
15 | */ |
||
16 | 4 | public function __construct($data) |
|
25 | |||
26 | 4 | public function __toString() |
|
30 | |||
31 | /** |
||
32 | * Retrieve the fact property |
||
33 | * |
||
34 | * @return string|null |
||
35 | */ |
||
36 | public function getFact() |
||
40 | } |
||
41 |