Passed
Push — master ( d1c5a6...bac8bf )
by Fabian
03:36 queued 12s
created

NoneStrategy   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 1
dl 0
loc 5
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
12
    public function setupAsset(AssetInterface $asset): void
13
    {
14
15
    }
16
17
}
18