mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-30 16:29:23 +02:00
Implemented Bridge Pattern
This commit is contained in:
11
Bridge/Assemble.php
Normal file
11
Bridge/Assemble.php
Normal file
@@ -0,0 +1,11 @@
|
||||
<?php
|
||||
|
||||
namespace DesignPatterns\Bridge;
|
||||
|
||||
class Assemble implements Workshop {
|
||||
|
||||
public function work() {
|
||||
print 'Assembled';
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user