AdminRole   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 AdminRole.php
5
 * @brief This file contains the AdminRole class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
namespace Daikengo\Role;
12
13
14
/**
15
 * @brief A community's administrator.
16
 * @details An admin is able to administer the entire community. It's a powerful role, granted to a very few community's
17
 * members by the supervisor in person.
18
 * @nosubgrouping
19
 */
20
class AdminRole extends MemberRole {
21
22
  
23
  public function getDescription() {
24
    return "A community's administrator";
25
  }
26
  
27
}