Piwik\Columns\Dimension::hasImplementedEvent PHP Method

hasImplementedEvent() public method

Check whether a dimension has overwritten a specific method.
public hasImplementedEvent ( $method ) : boolean
$method
return boolean
    public function hasImplementedEvent($method)
    {
        $method = new \ReflectionMethod($this, $method);
        $declaringClass = $method->getDeclaringClass();
        return 0 === strpos($declaringClass->name, 'Piwik\\Plugins');
    }