mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-28 10:53:39 +01:00
Fix ReflectionParameter::isArray() was deprecated as of PHP 8.0.0
This commit is contained in:
parent
7502749ef1
commit
9de404da9c
@ -558,7 +558,16 @@ class Widget
|
||||
error_log("Missing required parameter {$param->getPosition()}: {$param->getName()}");
|
||||
$call = false;
|
||||
}
|
||||
if($param->isArray() && !is_array($params[$index]))
|
||||
// Check to see if method wants an array, and we're providing it
|
||||
$paramType = $param->getType();
|
||||
if(!$paramType)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
$types = $paramType instanceof \ReflectionUnionType
|
||||
? $paramType->getTypes()
|
||||
: [$paramType];
|
||||
if(in_array('array', array_map(fn(\ReflectionNamedType $t) => $t->getName(), $types)) && !is_array($params[$index]))
|
||||
{
|
||||
error_log("$method_name expects an array for {$param->getPosition()}: {$param->getName()}");
|
||||
$params[$index] = (array)$params[$index];
|
||||
|
Loading…
Reference in New Issue
Block a user