Completed
Push — master ( da0794...b20e0d )
by Carlos C
02:40
created

AbstractRetriever::download()   B

Complexity

Conditions 5
Paths 4

Size

Total Lines 28
Code Lines 13

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 13
CRAP Score 5

Importance

Changes 0
Metric Value
dl 0
loc 28
ccs 13
cts 13
cp 1
rs 8.439
c 0
b 0
f 0
cc 5
eloc 13
nc 4
nop 1
crap 5
1
<?php
2
namespace XmlResourceRetriever;
3
4
/**
5
 * @deprecated Will be removed in version 2, use AbstractXmlRetriever instead
6
 */
7
abstract class AbstractRetriever extends AbstractXmlRetriever implements RetrieverInterface
8
{
9
}
10