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

getNamespace() 공개 메소드

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