mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-09 17:36:22 +02:00
12 lines
195 B
PHP
12 lines
195 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class HelloWorldService extends Service
|
|
{
|
|
public function get()
|
|
{
|
|
return $this->implementation->format('Hello World');
|
|
}
|
|
}
|