blob: 0bb612922493e18dbdf69c71de2bd2f435f4fb38 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<?php
namespace Kanboard\Formatter;
/**
* Formatter Interface
*
* @package formatter
* @author Frederic Guillot
*/
interface FormatterInterface
{
public function format();
}
|