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