mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-01 05:32:59 +02:00
12 lines
203 B
PHP
12 lines
203 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class HtmlFormatter implements FormatterInterface
|
|
{
|
|
public function format(string $text)
|
|
{
|
|
return sprintf('<p>%s</p>', $text);
|
|
}
|
|
}
|