lithium\util\Collection::__call PHP 메소드

__call() 공개 메소드

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