mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-27 18:20:22 +02:00
9 lines
151 B
PHP
9 lines
151 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
interface Formatter
|
|
{
|
|
public function format(string $text): string;
|
|
}
|