mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 22:09:23 +02:00
20 lines
320 B
Plaintext
20 lines
320 B
Plaintext
@startuml
|
|
interface BiosInterface {
|
|
+execute()
|
|
+waitForKeyPress()
|
|
+launch(OsInterface $os)
|
|
+powerDown()
|
|
}
|
|
|
|
class Facade {
|
|
#$os : OsInterface
|
|
#$bios : BiosInterface
|
|
+__construct(BiosInterface $bios, OsInterface $os)
|
|
+turnOn()
|
|
+turnOff()
|
|
}
|
|
|
|
interface OsInterface {
|
|
+halt()
|
|
}
|
|
@enduml |