Implemented Bridge Pattern

This commit is contained in:
Ulbrec
2014-04-12 13:23:00 +02:00
parent 978825cb28
commit feaa8daafb
8 changed files with 130 additions and 0 deletions

14
Bridge/Produce.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace DesignPatterns\Bridge;
/**
* Concrete Implementation
*/
class Produce implements Workshop {
public function work() {
print 'Produced ';
}
}