Passed
Push — master ( f19b34...1fcb39 )
by Yannick
07:53 queued 01:16
created

VideoConference   A

Complexity

Total Complexity 6

Size/Duplication

Total Lines 30
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 7
c 1
b 0
f 0
dl 0
loc 30
rs 10
wmc 6

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getCategory() 0 3 1
A getIcon() 0 3 1
A getLink() 0 3 1
A getResourceTypes() 0 3 1
A getTitle() 0 3 1
A getTitleToShow() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/* For licensing terms, see /license.txt */
6
7
namespace Chamilo\CoreBundle\Tool;
8
9
class VideoConference extends AbstractTool implements ToolInterface
10
{
11
    public function getTitle(): string
12
    {
13
        return 'bbb';
14
    }
15
16
    public function getTitleToShow(): string
17
    {
18
        return 'Videoconference';
19
    }
20
21
    public function getIcon(): string
22
    {
23
        return 'mdi-video';
24
    }
25
26
    public function getLink(): string
27
    {
28
        return '/plugin/bbb/start.php';
29
    }
30
31
    public function getCategory(): string
32
    {
33
        return 'plugin';
34
    }
35
36
    public function getResourceTypes(): ?array
37
    {
38
        return [
39
        ];
40
    }
41
}
42