mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-03 13:37:27 +02:00
Typo
Typo update
This commit is contained in:
@@ -3,29 +3,29 @@
|
|||||||
namespace DesignPatterns\Structural\Facade;
|
namespace DesignPatterns\Structural\Facade;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class BiosInterface.
|
* Interface BiosInterface
|
||||||
*/
|
*/
|
||||||
interface BiosInterface
|
interface BiosInterface
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* execute the BIOS.
|
* execute the BIOS
|
||||||
*/
|
*/
|
||||||
public function execute();
|
public function execute();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* wait for halt.
|
* wait for halt
|
||||||
*/
|
*/
|
||||||
public function waitForKeyPress();
|
public function waitForKeyPress();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* launches the OS.
|
* launches the OS
|
||||||
*
|
*
|
||||||
* @param OsInterface $os
|
* @param OsInterface $os
|
||||||
*/
|
*/
|
||||||
public function launch(OsInterface $os);
|
public function launch(OsInterface $os);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* power down BIOS.
|
* power down BIOS
|
||||||
*/
|
*/
|
||||||
public function powerDown();
|
public function powerDown();
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user