Events
last analyzed

Complexity

Total Complexity 0

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
wmc 0
lcom 0
cbo 1
dl 0
loc 9
ccs 0
cts 0
cp 0
c 0
b 0
f 0
1
<?php
2
3
/*
4
 * This file is part of the Ivory Http Adapter package.
5
 *
6
 * (c) Eric GELOEN <[email protected]>
7
 *
8
 * For the full copyright and license information, please read the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Ivory\HttpAdapter\Event;
13
14
use Ivory\HttpAdapter\Asset\AbstractUninstantiableAsset;
15
16
/**
17
 * @author GeLo <[email protected]>
18
 */
19
class Events extends AbstractUninstantiableAsset
20
{
21
    const REQUEST_CREATED = 'ivory.http_adapter.request_created';
22
    const REQUEST_SENT = 'ivory.http_adapter.request_sent';
23
    const REQUEST_ERRORED = 'ivory.http_adapter.request_errored';
24
    const MULTI_REQUEST_CREATED = 'ivory.http_adapter.multi_request_created';
25
    const MULTI_REQUEST_SENT = 'ivory.http_adapter.multi_request_sent';
26
    const MULTI_REQUEST_ERRORED = 'ivory.http_adapter.multi_request_errored';
27
}
28