mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +01:00
15 lines
231 B
PHP
15 lines
231 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface BiosInterface
|
|
{
|
|
public function execute();
|
|
|
|
public function waitForKeyPress();
|
|
|
|
public function launch(OsInterface $os);
|
|
|
|
public function powerDown();
|
|
}
|