lithium\util\collection\Filters::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
stringSource
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;
}