1 | <?php |
||
20 | trait EventRepository |
||
21 | { |
||
22 | /** |
||
23 | * @param \DateTime $begin |
||
24 | * @param \DateTime $end |
||
25 | * @param array $options |
||
26 | * |
||
27 | * @return \Doctrine\ORM\QueryBuilder |
||
28 | */ |
||
29 | public function getEventsQueryBuilder(\DateTime $begin, \DateTime $end, array $options = array()) |
||
62 | |||
63 | /** |
||
64 | * @param \DateTime $begin |
||
65 | * @param \DateTime $end |
||
66 | * @param array $options |
||
67 | * |
||
68 | * @return \Doctrine\ORM\Query |
||
69 | */ |
||
70 | public function getEventsQuery(\DateTime $begin, \DateTime $end, array $options = array()) |
||
74 | |||
75 | /** |
||
76 | * @param \DateTime $begin |
||
77 | * @param \DateTime $end |
||
78 | * @param array $options |
||
79 | * |
||
80 | * @return array<\CalendR\Event\EventInterface> |
||
81 | */ |
||
82 | public function getEvents(\DateTime $begin, \DateTime $end, array $options = array()) |
||
86 | |||
87 | /** |
||
88 | * @param array $options |
||
89 | * |
||
90 | * @return \Doctrine\ORM\QueryBuilder |
||
91 | */ |
||
92 | public function createQueryBuilderForGetEvent(array $options) |
||
96 | |||
97 | /** |
||
98 | * Returns the begin date field name. |
||
99 | * |
||
100 | * @return string |
||
101 | */ |
||
102 | public function getBeginFieldName() |
||
106 | |||
107 | /** |
||
108 | * Returns the end date field name. |
||
109 | * |
||
110 | * @return string |
||
111 | */ |
||
112 | public function getEndFieldName() |
||
116 | } |
||
117 |
This check marks calls to methods that do not seem to exist on an object.
This is most likely the result of a method being renamed without all references to it being renamed likewise.