merge from master

This commit is contained in:
Antonio Spinelli
2014-05-02 12:33:44 -03:00
parent 9beb7d9a58
commit 14a9dfe7cf
16 changed files with 325 additions and 17 deletions

View File

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