Kanboard-Prod/app/Formatter/FormatterInterface.php

15 lines
179 B
PHP

<?php
namespace Formatter;
/**
* Formatter Interface
*
* @package formatter
* @author Frederic Guillot
*/
interface FormatterInterface
{
public function format();
}