mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-26 11:13:50 +02:00
12 lines
210 B
PHP
12 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;
|
|
}
|
|
}
|