mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-09 17:36:22 +02:00
14 lines
229 B
PHP
14 lines
229 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');
|
|
}
|
|
}
|