getLastResponse() public méthode

public getLastResponse ( ) : Response | null
Résultat Response | null
 /**
  * Integration test using localhost Elastic Search server
  *
  * @covers Monolog\Handler\ElasticSearchHandler::__construct
  * @covers Monolog\Handler\ElasticSearchHandler::handleBatch
  * @covers Monolog\Handler\ElasticSearchHandler::bulkSend
  * @covers Monolog\Handler\ElasticSearchHandler::getDefaultFormatter
  */
 public function testHandleIntegration()
 {
     $msg = array('level' => Logger::ERROR, 'level_name' => 'ERROR', 'channel' => 'meh', 'context' => array('foo' => 7, 'bar', 'class' => new \stdClass()), 'datetime' => new \DateTime("@0"), 'extra' => array(), 'message' => 'log');
     $expected = $msg;
     $expected['datetime'] = $msg['datetime']->format(\DateTime::ISO8601);
     $expected['context'] = array('class' => '[object] (stdClass: {})', 'foo' => 7, 0 => 'bar');
     $client = new Client();
     $handler = new ElasticSearchHandler($client, $this->options);
     try {
         $handler->handleBatch(array($msg));
     } catch (\RuntimeException $e) {
         $this->markTestSkipped("Cannot connect to Elastic Search server on localhost");
     }
     // check document id from ES server response
     $documentId = $this->getCreatedDocId($client->getLastResponse());
     $this->assertNotEmpty($documentId, 'No elastic document id received');
     // retrieve document source from ES and validate
     $document = $this->getDocSourceFromElastic($client, $this->options['index'], $this->options['type'], $documentId);
     $this->assertEquals($expected, $document);
     // remove test index from ES
     $client->request("/{$this->options['index']}", Request::DELETE);
 }
 public function testLastRequestResponse()
 {
     $client = new Client();
     $response = $client->request('_status');
     $this->assertInstanceOf('Elastica\\Response', $response);
     $lastRequest = $client->getLastRequest();
     $this->assertInstanceOf('Elastica\\Request', $lastRequest);
     $this->assertEquals('_status', $lastRequest->getPath());
     $lastResponse = $client->getLastResponse();
     $this->assertInstanceOf('Elastica\\Response', $lastResponse);
     $this->assertSame($response, $lastResponse);
 }