| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | public function insertParticipant($loginId, $personId, $educationEventId, $educationEventCourseId) |
||
| 18 | { |
||
| 19 | return $this->getSkautis() |
||
| 20 | ->event |
||
| 21 | ->participantEducationInsert(([ |
||
| 22 | 'ID_EventEducation' => $educationEventId, |
||
| 23 | 'ID_Person' => $personId, |
||
| 24 | 'ID_EventEducationCourse' => $educationEventCourseId, |
||
| 25 | 'ID_Login' => $loginId, |
||
| 26 | ])); |
||
| 27 | } |
||
| 28 | |||
| 51 |