Files
DesignPatternsPHP/Structural/Facade/BiosInterface.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03: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();
}