blob: b053ca0abf8b44d5a7a730c65477f2a2b560f02b [file] [log] [blame]
<?php
namespace App\Twig\Runtime;
use App\Util\Filesize;
use Twig\Extension\RuntimeExtensionInterface;
class FilesizeExtensionRuntime implements RuntimeExtensionInterface {
public function humanReadableFormat($value) {
return Filesize::humanReadableFormat((int)$value);
}
}