NoneStrategy   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 1
dl 0
loc 4
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A setupAsset() 0 2 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Fabiang\AsseticBundle\View;
6
7
use Assetic\Contracts\Asset\AssetInterface;
8
9
class NoneStrategy extends AbstractStrategy
10
{
11
    public function setupAsset(AssetInterface $asset): void
12
    {
13
    }
14
}
15