Files
DesignPatternsPHP/Structural/Bridge/HelloWorldService.php
Dominik Liebler 72f32359c6 PHP7 Bridge
2016-09-22 20:33:24 +02:00

12 lines
195 B
PHP

<?php
namespace DesignPatterns\Structural\Bridge;
class HelloWorldService extends Service
{
public function get()
{
return $this->implementation->format('Hello World');
}
}