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());
 }