Kahlan\Reporter\Coverage::__call PHP Method

__call() public method

Delegates the call to the collector instance.
public __call ( string $name, array $args ) : mixed
$name string The function name.
$args array The arguments to pass to the function.
return mixed
    public function __call($name, $args)
    {
        return call_user_func_array([$this->collector(), $name], $args);
    }