blob: 56cc557e3e5ca0452cef00a4af7a0bf6e4ed6149 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace GuzzleHttp\Event;
/**
* Event object emitted after a request has been completed.
*
* This event MAY be emitted multiple times for a single request. You MAY
* change the Response associated with the request using the intercept()
* method of the event.
*
* This event allows the request to be retried if necessary using the retry()
* method of the event.
*/
class CompleteEvent extends AbstractRetryableEvent {}
|