| Total Complexity | 5 |
| Total Lines | 25 |
| Duplicated Lines | 0 % |
| Coverage | 100% |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 14 | class Groups implements Interfaces\IProcessGroups |
||
| 15 | { |
||
| 16 | 1 | public function createGroup(Interfaces\IGroup $group): bool |
|
| 17 | { |
||
| 18 | 1 | return false; |
|
| 19 | } |
||
| 20 | |||
| 21 | 1 | public function getGroupDataOnly(string $groupId): ?Interfaces\IGroup |
|
| 24 | } |
||
| 25 | |||
| 26 | 1 | public function readGroup(): array |
|
| 27 | { |
||
| 28 | 1 | return []; |
|
| 29 | } |
||
| 30 | |||
| 31 | 1 | public function updateGroup(Interfaces\IGroup $group): bool |
|
| 34 | } |
||
| 35 | |||
| 36 | 1 | public function deleteGroup(string $groupId): bool |
|
| 41 |