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