| Total Complexity | 3 |
| Total Lines | 19 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 20 | class PhpinfoPermission extends AbstractPermission { |
||
| 21 | |||
| 22 | |||
| 23 | public function __construct() { |
||
| 25 | } |
||
| 26 | |||
| 27 | |||
| 28 | public function getDescription() { |
||
| 29 | return "Permission to display information about PHP's configuration."; |
||
| 30 | } |
||
| 31 | |||
| 32 | |||
| 33 | /** |
||
| 34 | * @brief A developer can see the PHP's info page. |
||
| 35 | * @return bool |
||
| 36 | */ |
||
| 37 | public function checkForDeveloperRole() { |
||
| 39 | } |
||
| 40 | |||
| 41 | } |