mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
16 lines
192 B
PHP
16 lines
192 B
PHP
|
<?php
|
||
|
|
||
|
namespace DesignPatterns\Structural\Bridge;
|
||
|
|
||
|
/**
|
||
|
* Concrete Implementation
|
||
|
*/
|
||
|
class Produce implements Workshop
|
||
|
{
|
||
|
|
||
|
public function work()
|
||
|
{
|
||
|
print 'Produced ';
|
||
|
}
|
||
|
}
|