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

getNamespace() public method

Gets the Module namespace.
public getNamespace ( ) : string
return string The Module namespace
    public function getNamespace()
    {
        if (null === $this->reflected) {
            $this->reflected = new \ReflectionObject($this);
        }
        return $this->reflected->getNamespaceName();
    }