isDebug() 공개 메소드

In debug mode, the verbosity is always {@link IO::DEBUG}.
또한 보기: setDebug()
public isDebug ( ) : boolean
리턴 boolean Returns `true` if the application is in debug mode.
예제 #1
0
 public function testSetDebug()
 {
     $this->assertFalse($this->config->isDebug());
     $this->config->setDebug(true);
     $this->assertTrue($this->config->isDebug());
     $this->config->setDebug(false);
     $this->assertFalse($this->config->isDebug());
 }