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