Passed
Push — master ( 26caeb...0e28f7 )
by Thomas
11:18
created

GenericCertificatesService::exportCourseResults()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 1
dl 0
loc 3
rs 10
1
<?php
2
3
namespace App\Services;
4
5
use App\Interfaces\CertificatesInterface;
6
use App\Models\Course;
7
use App\Models\Enrollment;
8
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)
22
    {
23
        abort(403);
24
    }
25
}
26