DebugKit\DebugPanel::title PHP Méthode

title() public méthode

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