We have detected an error in your notification set-up
(Event-ID dab39dc24f564ec7bd4628d1305fd03c).
Currently, we cannot inform you about inspection progress.
Please check that the user
557058:bca11929-8c2d-43f2-8a82-c5416880d395
still has access to your repository or
update the API account.
1 | <?php |
||
10 | class History implements Journal |
||
11 | { |
||
12 | /** @var RequestInterface */ |
||
13 | private $lastRequest; |
||
14 | /** @var ResponseInterface */ |
||
15 | private $lastResponse; |
||
16 | |||
17 | /** |
||
18 | * @return RequestInterface|null |
||
19 | */ |
||
20 | public function getLastRequest() |
||
24 | |||
25 | /** |
||
26 | * @return ResponseInterface|null |
||
27 | */ |
||
28 | public function getLastResponse() |
||
32 | |||
33 | public function addSuccess(RequestInterface $request, ResponseInterface $response) |
||
38 | |||
39 | public function addFailure(RequestInterface $request, Exception $exception) |
||
43 | } |
||
44 |