Total Complexity | 7 |
Total Lines | 34 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
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 |
||
29 | // TODO: Implement createCourse() method. |
||
30 | } |
||
31 | |||
32 | public function updateCourse(Course $course): void |
||
34 | // TODO: Implement updateCourse() method. |
||
35 | } |
||
36 | |||
37 | public function enrollStudent(Course $course, Student $student): void |
||
39 | // TODO: Implement enrollStudent() method. |
||
40 | } |
||
41 | |||
42 | public function removeStudent($courseId, $userId): void |
||
44 | // TODO: Implement removeStudent() method. |
||
45 | } |
||
47 |