MemberRole   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 MemberRole.php
5
 * @brief This file contains the MemberRole class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
namespace Daikengo\Role;
12
13
14
/**
15
 * @brief A classic community's member.
16
 * @attention This role is granted to every community's member. You cannot revoke this role unless a superior role has
17
 * been granted to the member.
18
 * @nosubgrouping
19
 */
20
class MemberRole extends GuestRole {
21
22
23
  public function getDescription() {
24
    return "This role is granted to every community's member.";
25
  }
26
27
}