PPI\Framework\Module\AbstractModule::getName PHP Method

getName() public method

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