Пример #1
0
 /**
  * {@inheritdoc}
  */
 public function popProcessor() : callable
 {
     if ($this->handler instanceof ProcessableHandlerInterface) {
         return $this->handler->popProcessor();
     }
     throw new \LogicException('The wrapped handler does not implement ' . ProcessableHandlerInterface::class);
 }
Пример #2
0
 /**
  * {@inheritdoc}
  */
 public function popProcessor()
 {
     return $this->handler->popProcessor();
 }
Пример #3
0
 /**
  * @override
  * @inheritDoc
  */
 public function popProcessor()
 {
     return $this->model->popProcessor();
 }
Пример #4
0
 public function popProcessor()
 {
     return $this->delegate->popProcessor();
 }