lithium\util\Collection::__call()

public method

Hook to handle dispatching of methods against all items in the collection.

Parameters

  • string $method
  • array $parameters

Returns

mixed

Source

	public function __call($method, $parameters = []) {
		return $this->invoke($method, $parameters);
	}