mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-09 17:36:22 +02:00
13 lines
158 B
PHP
13 lines
158 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class Assemble implements Workshop
|
|
{
|
|
|
|
public function work()
|
|
{
|
|
print 'Assembled';
|
|
}
|
|
}
|