DebugKit\DebugPanel::title PHP Method

title() public method

Get the title for the panel.
public title ( ) : string
return string
    public function title()
    {
        list($ns, $name) = namespaceSplit(get_class($this));
        $name = substr($name, 0, strlen('Panel') * -1);
        return Inflector::humanize(Inflector::underscore($name));
    }