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