Phprest\Application::getConfiguration PHP Method

getConfiguration() public method

public getConfiguration ( ) : Config
return Config
    public function getConfiguration()
    {
        return $this->configuration;
    }

Usage Example

コード例 #1
0
ファイル: ApplicationTest.php プロジェクト: phprest/phprest
 public function testGetters()
 {
     $this->assertInstanceOf('\\Phprest\\Config', $this->app->getConfiguration());
     $this->assertInstanceOf('\\League\\Container\\ContainerInterface', $this->app->getContainer());
     $this->assertInstanceOf('\\Phprest\\Router\\RouteCollection', $this->app->getRouter());
 }
All Usage Examples Of Phprest\Application::getConfiguration