| Total Complexity | 6 |
| Total Lines | 40 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class ElementFormController extends ElementController |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * {@inheritDoc} |
||
| 16 | */ |
||
| 17 | public function __construct($element = null) |
||
| 18 | { |
||
| 19 | parent::__construct($element); |
||
| 20 | |||
| 21 | $current = Controller::curr(); |
||
| 22 | |||
| 23 | if ($current->getRequest()->isPOST()) { |
||
| 24 | // handle the post request. |
||
| 25 | $user = UserDefinedFormController::create($element); |
||
| 26 | $form = $user->Form(); |
||
| 27 | |||
| 28 | $user->process($current->getRequest()->postVars(), $form); |
||
| 29 | } |
||
| 30 | } |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param string $action |
||
| 34 | * |
||
| 35 | * @return string |
||
| 36 | */ |
||
| 37 | public function Link($action = null) |
||
| 52 | } |
||
| 53 | } |
||
| 54 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths