Airship\Engine\Landing::getNamespace PHP Method

getNamespace() protected method

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