The call to TypeError::__construct() has too many arguments starting with 'Argument 1 passed to dr...ype($value) . ' given.'.
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.
In this case you can add the @ignorePhpDoc
annotation to the duplicate definition and it will be ignored.
Loading history...
25
1
'must be of the type Resource, ' . gettype($value) . ' given.'
26
);
27
}
28
29
6
parent::__construct($value);
30
6
}
31
32
/**
33
* {@inheritdoc}
34
*/
35
abstract public function hash(): string;
36
37
/**
38
* {@inheritdoc}
39
*/
40
1
public function equals(ValueInterface $item, $strict = true) : bool
When comparing two booleans, it is generally considered safer to use the strict comparison operator.