| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | class DebugPermission extends AbstractPermission { |
||
| 22 | |||
| 23 | |||
| 24 | public function __construct() { |
||
| 25 | parent::__construct(); |
||
| 26 | } |
||
| 27 | |||
| 28 | |||
| 29 | public function getDescription() { |
||
| 30 | return "The member can use the integrated debugger."; |
||
| 31 | } |
||
| 32 | |||
| 33 | |||
| 34 | /** |
||
| 35 | * @brief A developer can display useful information in case of exception. |
||
| 36 | * @return bool |
||
| 37 | */ |
||
| 38 | public function checkForDeveloperRole() { |
||
| 40 | } |
||
| 41 | |||
| 42 | } |