DesignPatternsPHP/Structural/Facade/BiosInterface.php
2015-12-21 07:28:20 -05:00

32 lines
459 B
PHP

<?php
namespace DesignPatterns\Structural\Facade;
/**
* Class BiosInterface.
*/
interface BiosInterface
{
/**
* execute the BIOS.
*/
public function execute();
/**
* wait for halt.
*/
public function waitForKeyPress();
/**
* launches the OS.
*
* @param OsInterface $os
*/
public function launch(OsInterface $os);
/**
* power down BIOS.
*/
public function powerDown();
}