Piwik\Columns\Dimension::hasImplementedEvent PHP Метод

hasImplementedEvent() публичный Метод

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