1 | <?php |
||
12 | class LogActivity extends Entities\BaseEntity |
||
13 | { |
||
14 | |||
15 | use Entities\Attributes\Identifier; |
||
16 | |||
17 | /** |
||
18 | * @ORM\ManyToOne(targetEntity="User") |
||
19 | * @ORM\JoinColumn(name="user", referencedColumnName="id") |
||
20 | */ |
||
21 | public $user; |
||
22 | |||
23 | /** |
||
24 | * @ORM\Column(name="time_from", type="datetime") |
||
25 | */ |
||
26 | public $timeFrom; |
||
27 | |||
28 | /** |
||
29 | * @ORM\Column(name="time_to", type="datetime") |
||
30 | */ |
||
31 | public $timeTo; |
||
32 | |||
33 | public function getDuration() |
||
43 | } |
||
44 |