SupervisorRole   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A getDescription() 0 2 1
1
<?php
2
3
/**
4
 * @file SupervisorRole.php
5
 * @brief This file contains the SupervisorRole class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
namespace Daikengo\Role;
12
13
14
/**
15
 * @brief The community's supervisor.
16
 * @details A supervisor represent the most important role inside the community. A supervisor is above every other
17
 * member, included the admins.
18
 * @nosubgrouping
19
 */
20
class SupervisorRole extends AdminRole {
21
22
23
  public function getDescription() {
24
    return "Special role granted to the site owner.";
25
  }
26
27
}