mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-08 00:54:50 +01:00
Fix ReflectionParameter::isArray() was deprecated as of PHP 8.0.0
This commit is contained in:
parent
7502749ef1
commit
9de404da9c
@ -553,12 +553,21 @@ class Widget
|
||||
$method = new ReflectionMethod($this, $method_name);
|
||||
foreach($method->getParameters() as $index => $param)
|
||||
{
|
||||
if(!$param->isOptional() && !array_key_exists($index,$params))
|
||||
if(!$param->isOptional() && !array_key_exists($index, $params))
|
||||
{
|
||||
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