getNamespace() 공개 메소드

Get application namespace.
public getNamespace ( ) : string
리턴 string
예제 #1
0
 public function testGetNamespace()
 {
     $env = Environment::getInstance();
     $env->initializeEnvironment(__DIR__ . '/../DemoApp/');
     $app = new Application($env);
     $this->assertSame('Webiny\\Component\\Bootstrap\\Tests\\DemoApp', $app->getNamespace());
 }