| 1 | <?php |
||
| 14 | class KeyValueParameter extends JWKParameter |
||
| 15 | { |
||
| 16 | use Base64URLValue; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * Constructor. |
||
| 20 | * |
||
| 21 | * @param string $key Base64url encoded key |
||
| 22 | */ |
||
| 23 | 57 | public function __construct(string $key) |
|
| 27 | 57 | } |
|
| 28 | |||
| 29 | /** |
||
| 30 | * Get key in binary format. |
||
| 31 | * |
||
| 32 | * @return string |
||
| 33 | */ |
||
| 34 | 2 | public function key(): string |
|
| 37 | } |
||
| 38 | } |
||
| 39 |
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.