Files
Kanboard-Prod/app/Formatter/FormatterInterface.php
Frederic Guillot 689687dd4e Add formatters
2015-09-20 22:18:56 -04:00

15 lines
179 B
PHP

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