mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-14 18:35:42 +02:00
12 lines
118 B
PHP
12 lines
118 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\StaticFactory;
|
|
|
|
/**
|
|
* Class FormatterInterface
|
|
*/
|
|
interface FormatterInterface
|
|
{
|
|
|
|
}
|