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

AssetReference::getVars()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

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