mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-19 14:21:15 +02:00
9 lines
126 B
PHP
9 lines
126 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
interface Formatter
|
|
{
|
|
public function format(string $text): string;
|
|
}
|