Skip to content

Commit

Permalink
Event\RequestEvents: Improve events description
Browse files Browse the repository at this point in the history
  • Loading branch information
arturdoruch committed Aug 5, 2021
1 parent 7215fff commit 66d78a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Event/RequestEvents.php
Expand Up @@ -11,16 +11,16 @@
final class RequestEvents
{
/**
* The event occurs just before send HTTP request.
* The event dispatched before sending the HTTP request.
*
* @Event
* @Event("ArturDoruch\Http\Event\BeforeEvent")
*/
const BEFORE = 'request.before';

/**
* The event occurs when HTTP request is done.
* The event dispatched when the HTTP request is sent.
*
* @Event
* @Event("ArturDoruch\Http\Event\CompleteEvent")
*/
const COMPLETE = 'request.complete';
}
Expand Down

0 comments on commit 66d78a1

Please sign in to comment.