Airship\Engine\Landing::getNamespace PHP 메소드

getNamespace() 보호된 메소드

Get the name of the current namespace
protected getNamespace ( ) : string
리턴 string
    protected function getNamespace() : string
    {
        $current = \get_class($this);
        $reflect = new \ReflectionClass($current);
        return $reflect->getNamespaceName();
    }