mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
12 lines
129 B
PHP
12 lines
129 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
/**
|
|
* Class FormatterInterface
|
|
*/
|
|
interface FormatterInterface
|
|
{
|
|
|
|
}
|