for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* Copyright (C) 2013-2016 Mailgun
*
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
namespace Mailgun\HttpClient\Plugin;
use Http\Client\Common\Plugin\Journal;
use Http\Client\Exception;
use Psr\Http\Message\RequestInterface;
use Psr\Http\Message\ResponseInterface;
/**
* A plugin to remember the last response.
* @author Tobias Nyholm <[email protected]>
class History implements Journal
{
* @var ResponseInterface
private $lastResponse;
* @return ResponseInterface|null
public function getLastResponse()
return $this->lastResponse;
}
public function addSuccess(RequestInterface $request, ResponseInterface $response)
$this->lastResponse = $response;
public function addFailure(RequestInterface $request, Exception $exception)