- Affected version
- 2.1.8
PHP:
/**
* @Param $class
* @Param array ...$arguments
*
* @return mixed
*/
public function service($class, ...$arguments)
This should be
mixed ...$arguments, as otherwise this is saying it expects an array of arrays. not an array of mixed items.