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