Exemple #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);
 }
Exemple #2
0
 /**
  * {@inheritdoc}
  */
 public function popProcessor()
 {
     return $this->handler->popProcessor();
 }
Exemple #3
0
 /**
  * @override
  * @inheritDoc
  */
 public function popProcessor()
 {
     return $this->model->popProcessor();
 }
 public function popProcessor()
 {
     return $this->delegate->popProcessor();
 }