lithium\util\collection\Filters::method PHP Method

method() public method

Gets the method name associated with this filter chain. This is the method being filtered.
public method ( boolean $full = false ) : string
$full boolean Whether to return the method name including the class name or not.
return string
    public function method($full = false)
    {
        return $full ? $this->_class . '::' . $this->_method : $this->_method;
    }