Typo update
This commit is contained in:
Petr Jurasek
2016-03-21 17:03:04 +01:00
parent eef2b2944e
commit 0e358b79d2

View File

@@ -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();
} }