Пример #1
0
 /**
  * Removes the processor on top of the stack and returns it.
  *
  * @return callable|null
  */
 public function popProcessor()
 {
     try {
         return $this->logger->popProcessor();
     } catch (Error $ex) {
         return null;
     } catch (Exception $ex) {
         return null;
     }
 }