| Conditions | 1 |
| Paths | 1 |
| Total Lines | 5 |
| Code Lines | 2 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 3 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 26 | 27 | public function __construct(int $exp_time) |
|
| 27 | { |
||
| 28 | // validate that claim is after the constraint (reference time) |
||
| 29 | 27 | parent::__construct(self::NAME_EXPIRATION_TIME, $exp_time, |
|
|
2 ignored issues
–
show
|
|||
| 30 | 27 | new GreaterValidator()); |
|
| 31 | 27 | } |
|
| 33 |
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.