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

AssetReference::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 2
dl 0
loc 5
ccs 4
cts 4
cp 1
crap 1
rs 10
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