Total Complexity | 3 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class GenericCertificatesService implements CertificatesInterface |
||
10 | { |
||
11 | public function exportCertificate(Enrollment $enrollment) |
||
12 | { |
||
13 | abort(403); |
||
14 | } |
||
15 | |||
16 | public function exportCourseResults(Course $course) |
||
17 | { |
||
18 | abort(403); |
||
19 | } |
||
20 | |||
21 | public function exportResult(Enrollment $enrollment) |
||
24 | } |
||
25 | } |
||
26 |