Phprest\Config::getLoggerConfig PHP 메소드

getLoggerConfig() 공개 메소드

public getLoggerConfig ( ) : Config
리턴 Phprest\Service\Logger\Config
    public function getLoggerConfig()
    {
        return $this->loggerConfig;
    }

Usage Example

예제 #1
0
 public function testLoggerGetterSetter()
 {
     $config = new Config('phprest', 1, true);
     $config->setLoggerConfig(new LoggerConfig('test'));
     $config->setLoggerService(new LoggerService());
     $this->assertInstanceOf('\\Phprest\\Service\\Logger\\Config', $config->getLoggerConfig());
     $this->assertInstanceOf('\\Phprest\\Service\\Logger\\Service', $config->getLoggerService());
 }
All Usage Examples Of Phprest\Config::getLoggerConfig