DeveloperRole   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 DeveloperRole.php
5
 * @brief This file contains the DeveloperRole class.
6
 * @details
7
 * @author Filippo F. Fadda
8
 */
9
10
11
namespace Daikengo\Role;
12
13
14
/**
15
 * @brief A platform developer.
16
 * @details A platform developer is able to use some special debugging tools.
17
 * @nosubgrouping
18
 */
19
class DeveloperRole extends AbstractRole {
20
21
22
  public function getDescription() {
23
    return "A platform developer.";
24
  }
25
26
}