Files
DesignPatternsPHP/Facade/BiosInterface.php
Dominik Liebler 754ea98fb2 cs Facade
2013-09-11 16:28:06 +02:00

32 lines
443 B
PHP

<?php
namespace DesignPatterns\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();
}