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 |
||
| 9 | class HistoryPlugin implements Journal |
||
| 10 | { |
||
| 11 | use HistoryVersionBridge; |
||
| 12 | |||
| 13 | /** @var RequestInterface */ |
||
| 14 | private $lastRequest; |
||
| 15 | /** @var ResponseInterface */ |
||
| 16 | private $lastResponse; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @return RequestInterface|null |
||
| 20 | */ |
||
| 21 | public function getLastRequest() |
||
| 25 | |||
| 26 | /** |
||
| 27 | * @return ResponseInterface|null |
||
| 28 | */ |
||
| 29 | public function getLastResponse() |
||
| 33 | |||
| 34 | public function addSuccess(RequestInterface $request, ResponseInterface $response) |
||
| 39 | } |
||
| 40 |