/
home
/
obinna
/
html
/
boaz2
/
vendor
/
mailgun
/
mailgun-php
/
src
/
HttpClient
/
Plugin
/
Upload File
HOME
<?php declare(strict_types=1); /* * Copyright (C) 2013 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 Psr\Http\Message\RequestInterface; use Psr\Http\Message\ResponseInterface; /** * A plugin to remember the last response. * * @author Tobias Nyholm <tobias.nyholm@gmail.com> */ final class History implements Journal { use HistoryTrait; /** * @var ResponseInterface */ private $lastResponse; /** * @return ResponseInterface|null */ public function getLastResponse() { return $this->lastResponse; } public function addSuccess(RequestInterface $request, ResponseInterface $response) { $this->lastResponse = $response; } }