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

AbstractPurgeQuery::populateCDNResources()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 2

Importance

Changes 0
Metric Value
dl 0
loc 6
c 0
b 0
f 0
ccs 5
cts 5
cp 1
rs 9.4285
cc 2
eloc 3
nc 2
nop 0
crap 2
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