Conditions | 1 |
Paths | 1 |
Total Lines | 26 |
Code Lines | 16 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
17 | public function __construct(ContainerInterface $di) |
||
18 | { |
||
19 | parent::__construct($di); |
||
20 | $this->form->create( |
||
21 | [ |
||
22 | "id" => __CLASS__, |
||
23 | "legend" => "Legend", |
||
24 | ], |
||
25 | [ |
||
26 | "pwd" => [ |
||
27 | "type" =>"text", |
||
28 | "label" => "Password", |
||
29 | ], |
||
30 | |||
31 | "pwdAgain" => [ |
||
32 | "type" => "text", |
||
33 | "label" => "Password again", |
||
34 | "validation" => [ |
||
35 | "match" => "pwd" |
||
36 | ], |
||
37 | ], |
||
38 | |||
39 | "submit" => [ |
||
40 | "type" => "submit", |
||
41 | "value" => "Create user", |
||
42 | "callback" => [$this, "callbackSubmit"] |
||
43 | ], |
||
66 |
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