PHP7 Bridge

This commit is contained in:
Dominik Liebler
2016-09-22 20:33:24 +02:00
parent d151e309c5
commit 72f32359c6
16 changed files with 790 additions and 629 deletions

View File

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