Total Complexity | 2 |
Total Lines | 62 |
Duplicated Lines | 0 % |
Coverage | 0% |
Changes | 0 |
1 | <?php |
||
14 | class UserStory extends UserStoryModel |
||
15 | { |
||
16 | /** |
||
17 | * @ORM\Id |
||
18 | * @ORM\Column(type="string", length=30) |
||
19 | */ |
||
20 | protected $id; |
||
21 | /** |
||
22 | * @ORM\Column(type="string", length=255) |
||
23 | */ |
||
24 | protected $title; |
||
25 | /** |
||
26 | * @ORM\Column(type="text") |
||
27 | */ |
||
28 | protected $description; |
||
29 | /** |
||
30 | * @ORM\Column(type="integer") |
||
31 | */ |
||
32 | protected $value; |
||
33 | /** |
||
34 | * @ORM\Column(type="string", length=30) |
||
35 | */ |
||
36 | protected $status; |
||
37 | /** |
||
38 | * @ORM\Column(type="float") |
||
39 | */ |
||
40 | protected $estimatedTime; |
||
41 | /** |
||
42 | * @ORM\Column(type="float") |
||
43 | */ |
||
44 | protected $spentTime; |
||
45 | /** |
||
46 | * @ORM\ManyToOne(targetEntity="Sprint") |
||
47 | */ |
||
48 | protected $sprint; |
||
49 | /** |
||
50 | * @ORM\ManyToOne(targetEntity="Epic") |
||
51 | */ |
||
52 | protected $epic; |
||
53 | /** |
||
54 | * @ORM\Column(type="datetime") |
||
55 | */ |
||
56 | protected $createdAt; |
||
57 | /** |
||
58 | * @ORM\Column(type="datetime") |
||
59 | */ |
||
60 | protected $updatedAt; |
||
61 | |||
62 | /** |
||
63 | * @ORM\PrePersist() |
||
64 | */ |
||
65 | public function prePersist() |
||
68 | } |
||
69 | |||
70 | /** |
||
71 | * @ORM\PreUpdate() |
||
72 | */ |
||
73 | public function preUpdate() |
||
76 | } |
||
77 | } |