Completed
Pull Request — master (#3)
by nicolas
05:59
created

AbstractPurgeQuery::__construct()   A

Complexity

Conditions 3
Paths 4

Size

Total Lines 8
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 7
CRAP Score 3

Importance

Changes 0
Metric Value
dl 0
loc 8
c 0
b 0
f 0
ccs 7
cts 7
cp 1
rs 9.4285
cc 3
eloc 6
nc 4
nop 5
crap 3
1
<?php
2
3
namespace Dekalee\Cdn77\Query;
4
5
/**
6
 * Class AbstractPurgeQuery
7
 *
8
 * @deprecated will be removed in 2.0.0 use AbstractResourcesAwareQuery
9
 */
10
abstract class AbstractPurgeQuery extends AbstractResourcesAwareQuery
11
{
12
}
13