Conditions | 1 |
Paths | 1 |
Total Lines | 4 |
Code Lines | 2 |
Lines | 0 |
Ratio | 0 % |
Tests | 3 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
23 | 14 | public function __construct(string $d) |
|
24 | { |
||
25 | 14 | $this->_validateEncoding($d); |
|
26 | 14 | parent::__construct(self::PARAM_PRIVATE_EXPONENT, $d); |
|
1 ignored issue
–
show
|
|||
27 | 14 | } |
|
29 |
This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.
If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress. Please note the @ignore annotation hint above.