| Total Complexity | 2 |
| Total Lines | 48 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 17 | class CCalendarEventRepeatNot |
||
| 18 | { |
||
| 19 | /** |
||
| 20 | * @var int |
||
| 21 | * |
||
| 22 | * @ORM\Column(name="iid", type="integer") |
||
| 23 | * @ORM\Id |
||
| 24 | * @ORM\GeneratedValue |
||
| 25 | */ |
||
| 26 | protected $iid; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @var CCalendarEvent |
||
| 30 | * |
||
| 31 | * @ORM\ManyToOne(targetEntity="Chamilo\CourseBundle\Entity\CCalendarEvent", inversedBy="repeatEvents") |
||
| 32 | * @ORM\JoinColumn(name="cal_id", referencedColumnName="iid") |
||
| 33 | */ |
||
| 34 | protected $event; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * @var int |
||
| 38 | * |
||
| 39 | * @ORM\Column(name="cal_date", type="integer") |
||
| 40 | */ |
||
| 41 | protected $calDate; |
||
| 42 | |||
| 43 | /** |
||
| 44 | * Set calDate. |
||
| 45 | * |
||
| 46 | * @param int $calDate |
||
| 47 | * |
||
| 48 | * @return CCalendarEventRepeatNot |
||
| 49 | */ |
||
| 50 | public function setCalDate($calDate) |
||
| 55 | } |
||
| 56 | |||
| 57 | /** |
||
| 58 | * Get calDate. |
||
| 59 | * |
||
| 60 | * @return int |
||
| 61 | */ |
||
| 62 | public function getCalDate() |
||
| 67 |