IFormatter
last analyzed

Size/Duplication

Total Lines 4
Duplicated Lines 0 %

Test Coverage

Coverage 0%

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 0
cts 0
cp 0
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
format() 0 1 ?
1
<?php
2
declare(strict_types=1);
3
4
namespace Webrouse\AssetMacro;
5
6
interface IFormatter
7
{
8
	public function format(Asset $asset, string $format = '%url%', bool $absolute = false): string;
9
}
10