Capitalize letters and add dots

This commit is contained in:
Petr Jurasek
2016-03-24 09:45:55 +01:00
parent 0e358b79d2
commit 00c3903b2e
4 changed files with 12 additions and 10 deletions

View File

@@ -3,29 +3,29 @@
namespace DesignPatterns\Structural\Facade;
/**
* Interface 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();
}