LMSLogService::removeStudent()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 0
c 1
b 0
f 0
nc 1
nop 2
dl 0
loc 2
rs 10
1
<?php
2
3
namespace App\Services;
4
5
use App\Interfaces\LMSInterface;
6
use App\Models\Course;
7
use App\Models\Student;
8
use App\Models\User;
9
10
class LMSLogService implements LMSInterface
11
{
12
    public function authenticate(): ?string
13
    {
14
        return null;
15
    }
16
17
    public function createUser(User $user, ?string $password): void
18
    {
19
        // TODO: Implement createUser() method.
20
    }
21
22
    public function updateUser(User $user, ?string $password): void
23
    {
24
        // TODO: Implement updateUser() method.
25
    }
26
27
    public function createCourse(Course $course): void
28
    {
29
        // TODO: Implement createCourse() method.
30
    }
31
32
    public function updateCourse(Course $course): void
33
    {
34
        // TODO: Implement updateCourse() method.
35
    }
36
37
    public function enrollStudent(Course $course, Student $student): void
38
    {
39
        // TODO: Implement enrollStudent() method.
40
    }
41
42
    public function removeStudent($courseId, $userId): void
43
    {
44
        // TODO: Implement removeStudent() method.
45
    }
46
}
47