for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Webrouse\AssetMacro;
interface IFormatter
{
public function format(Asset $asset, string $format = '%url%', bool $absolute = false): string;
}