Completed
Push — master ( 154eb7...2fa72a )
by Martin
04:05
created
src/Page/EventPage.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -123,6 +123,9 @@  discard block
 block discarded – undo
123 123
         return $sessions;
124 124
     }
125 125
 
126
+    /**
127
+     * @param Event $event
128
+     */
126 129
     public function getPolls($event)
127 130
     {
128 131
         $polls = $this->crawler->filter('.poll')->each(function (Crawler $node) use ($event) {
@@ -143,6 +146,9 @@  discard block
 block discarded – undo
143 146
         return new ArrayCollection($polls);
144 147
     }
145 148
 
149
+    /**
150
+     * @param Event $event
151
+     */
146 152
     public function getComments($event)
147 153
     {
148 154
         $comments = $this->crawler->filter('.comments .comment')->each(function (Crawler $node) use ($event) {
Please login to merge, or discard this patch.