mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-24 08:41:22 +02:00
12 lines
156 B
PHP
12 lines
156 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Bridge;
|
|
|
|
class Assemble implements Workshop
|
|
{
|
|
public function work()
|
|
{
|
|
echo 'Assembled';
|
|
}
|
|
}
|