/** {@inheritdoc} */
 protected function setUp()
 {
     $this->logger = $this->prophesize(LoggerInterface::class);
     $this->logstash = $this->prophesize(Logstash::class);
     $this->middleware = new LogEventMiddleware($this->logstash->reveal(), $this->logger->reveal());
 }