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