mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-05-14 18:35:42 +02:00
12 lines
186 B
PHP
12 lines
186 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class PlainTextFormatter implements FormatterInterface
|
|
{
|
|
public function format(string $text)
|
|
{
|
|
return $text;
|
|
}
|
|
}
|