1 | <?php |
||
5 | class LogEntity |
||
6 | { |
||
7 | /** |
||
8 | * @var int |
||
9 | */ |
||
10 | public $id; |
||
11 | |||
12 | /** |
||
13 | * @var \DateTimeInterface |
||
14 | */ |
||
15 | public $created; |
||
16 | |||
17 | /** |
||
18 | * @var string |
||
19 | */ |
||
20 | public $status; |
||
21 | |||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $email; |
||
26 | |||
27 | /** |
||
28 | * @return array |
||
29 | */ |
||
30 | public function toDatabaseArray() |
||
39 | |||
40 | /** |
||
41 | * @param array $data |
||
42 | * @return $this |
||
43 | */ |
||
44 | public function fromDatabaseArray(array $data) |
||
53 | |||
54 | /** |
||
55 | * @param array $data |
||
56 | */ |
||
57 | public function setData(array $data) |
||
67 | |||
68 | /** |
||
69 | * @return array |
||
70 | */ |
||
71 | public function toArray() |
||
75 | } |
||
76 |