Completed
Push — master ( 2247f3...204e6d )
by Stéphane
01:33
created

AssetReference::resolve()   A

Complexity

Conditions 3
Paths 3

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 5
CRAP Score 3.2098

Importance

Changes 0
Metric Value
cc 3
nc 3
nop 0
dl 0
loc 14
ccs 5
cts 7
cp 0.7143
crap 3.2098
rs 9.7998
c 0
b 0
f 0
1
<?php namespace Rocket\UI\Assets\Assetic\Asset;
2
3
use Assetic\Asset\AssetInterface;
4
use Assetic\AssetManager;
5
use Assetic\Filter\FilterInterface;
6
7
/**
8
 * A reference to an asset in the asset manager.
9
 *
10
 * @author Kris Wallsmith <[email protected]>
11
 * @deprecated Prefer the original \Assetic\Asset\AssetReference
12
 */
13
class AssetReference extends \Assetic\Asset\AssetReference
14
{
15
    // Left here only for compatibility
16
}
17