| Conditions | 2 |
| Paths | 2 |
| Total Lines | 13 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 40 | public function notifyTrackingContent($quizId, $studentId) |
||
| 41 | { |
||
| 42 | $this->eventData['quiz_id'] = $quizId; |
||
| 43 | $this->eventData['student_id'] = $studentId; |
||
| 44 | |||
| 45 | $results = []; |
||
| 46 | |||
| 47 | /** @var HookMyStudentsQuizTrackingObserverInterface $observer */ |
||
| 48 | foreach ($this->observers as $observer) { |
||
| 49 | $results[] = $observer->trackingContent($this); |
||
| 50 | } |
||
| 51 | |||
| 52 | return $results; |
||
| 53 | } |
||
| 55 |