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