IFormatter::format()
last analyzed

Size

Total Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 1
ccs 0
cts 0
cp 0
c 0
b 0
f 0
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