Elgg\Logger::enable PHP Метод

enable() публичный Метод

Restore logging and get record of log calls (after tests)
См. также: disable
public enable ( ) : array
Результат array
    public function enable()
    {
        return array_pop($this->disabled_stack);
    }

Usage Example

Пример #1
0
 public function tearDown()
 {
     $this->logger->enable();
     $this->session->invalidate();
     $this->events->restore();
     $this->hooks->restore();
 }
All Usage Examples Of Elgg\Logger::enable