mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 09:12:34 +01:00
15 lines
251 B
PHP
15 lines
251 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface Bios
|
|
{
|
|
public function execute();
|
|
|
|
public function waitForKeyPress();
|
|
|
|
public function launch(OperatingSystem $os);
|
|
|
|
public function powerDown();
|
|
}
|