2014-05-02 12:33:44 -03:00

16 lines
192 B
PHP

<?php
namespace DesignPatterns\Structural\Bridge;
/**
* Concrete Implementation
*/
class Produce implements Workshop
{
public function work()
{
print 'Produced ';
}
}