mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-06-02 12:04:51 +02:00
15 lines
170 B
PHP
15 lines
170 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Bridge;
|
|
|
|
/**
|
|
* Concrete Implementation
|
|
*/
|
|
class Produce implements Workshop {
|
|
|
|
public function work() {
|
|
print 'Produced ';
|
|
}
|
|
|
|
}
|