lithium\util\Collection::__call PHP Method

__call() public method

Hook to handle dispatching of methods against all items in the collection.
public __call ( string $method, array $parameters = [] ) : mixed
$method string
$parameters array
return mixed
    public function __call($method, $parameters = array())
    {
        return $this->invoke($method, $parameters);
    }