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