| 1 | <?php |
||
| 20 | class JournalEntry implements JournalEntryInterface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * @var \Ivory\HttpAdapter\Message\InternalRequestInterface |
||
| 24 | */ |
||
| 25 | private $request; |
||
| 26 | |||
| 27 | /** |
||
| 28 | * @var \Ivory\HttpAdapter\Message\ResponseInterface |
||
| 29 | */ |
||
| 30 | private $response; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * @param InternalRequestInterface $request |
||
| 34 | * @param ResponseInterface $response |
||
| 35 | */ |
||
| 36 | 36 | public function __construct(InternalRequestInterface $request, ResponseInterface $response) |
|
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | 36 | public function getRequest() |
|
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | 36 | public function setRequest(InternalRequestInterface $request) |
|
| 57 | |||
| 58 | /** |
||
| 59 | * {@inheritdoc} |
||
| 60 | */ |
||
| 61 | 27 | public function getResponse() |
|
| 65 | |||
| 66 | /** |
||
| 67 | * {@inheritdoc} |
||
| 68 | */ |
||
| 69 | 36 | public function setResponse(ResponseInterface $response) |
|
| 73 | } |
||
| 74 |