PPI\Framework\Module\AbstractModule::getName PHP 메소드

getName() 공개 메소드

Returns the module name. Defaults to the module namespace stripped of backslashes.
public getName ( ) : string
리턴 string The Module name
    public function getName()
    {
        if (null !== $this->name) {
            return $this->name;
        }
        $this->name = str_replace('\\', '', $this->getNamespace());
        return $this->name;
    }