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

public method
Not used here anymore.

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) {
		$message  = '`\lithium\util\collection\Filters::method()` has been deprecated ';
		$message .= 'in favor of `\lithium\aop\Chain::method()`';
		trigger_error($message, E_USER_DEPRECATED);

		return $full ? $this->_class . '::' . $this->_method : $this->_method;
	}