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

AssetReference::__clone()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 8

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 6

Importance

Changes 0
Metric Value
cc 2
nc 2
nop 0
dl 0
loc 8
ccs 0
cts 5
cp 0
crap 6
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