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