mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-10 09:56:24 +02:00
9 lines
127 B
PHP
9 lines
127 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
interface FormatterInterface
|
|
{
|
|
public function format(string $text);
|
|
}
|