mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-27 03:33:26 +02:00
12 lines
228 B
PHP
12 lines
228 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class HelloWorldService extends Service
|
|
{
|
|
public function get(): string
|
|
{
|
|
return $this->implementation->format('Hello World');
|
|
}
|
|
}
|