DebugKit\DebugPanel::elementName PHP Метод

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

Get the element name for the panel.
public elementName ( ) : string
Результат string
    public function elementName()
    {
        list($ns, $name) = namespaceSplit(get_class($this));
        if ($this->plugin) {
            return $this->plugin . '.' . Inflector::underscore($name);
        }
        return Inflector::underscore($name);
    }