| Total Complexity | 1 |
| Total Lines | 9 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class ControllerExtension extends Extension |
||
| 15 | { |
||
| 16 | private static $allowed_actions = [ |
||
|
1 ignored issue
–
show
|
|||
| 17 | 'SlackForm' |
||
| 18 | ]; |
||
| 19 | |||
| 20 | public function SlackForm() |
||
| 21 | { |
||
| 22 | return SlackSignupForm::create($this->owner, __FUNCTION__); |
||
| 23 | } |
||
| 25 |
This check marks private properties in classes that are never used. Those properties can be removed.