diff options
Diffstat (limited to 'app/Formatter/FormatterInterface.php')
-rw-r--r-- | app/Formatter/FormatterInterface.php | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/Formatter/FormatterInterface.php b/app/Formatter/FormatterInterface.php new file mode 100644 index 00000000..4193bd4e --- /dev/null +++ b/app/Formatter/FormatterInterface.php @@ -0,0 +1,14 @@ +<?php + +namespace Formatter; + +/** + * Formatter Interface + * + * @package formatter + * @author Frederic Guillot + */ +interface FormatterInterface +{ + public function format(); +} |