SupervisorRole::getDescription()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
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
}