mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-23 16:21:22 +02:00
11 lines
128 B
PHP
11 lines
128 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Creational\StaticFactory;
|
|
|
|
/**
|
|
* Class FormatterInterface
|
|
*/
|
|
interface FormatterInterface
|
|
{
|
|
}
|