lithium\util\collection\Filters::method()

public method

Gets the method name associated with this filter chain. This is the method being filtered.

Parameters

  • boolean $full

    Whether to return the method name including the class name or not.

Returns

string

Source

	public function method($full = false) {
		return $full ? $this->_class . '::' . $this->_method : $this->_method;
	}