2014-04-12 13:23:00 +02:00

15 lines
170 B
PHP

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