Files
DesignPatternsPHP/Structural/Facade/OsInterface.php
2016-03-24 09:45:55 +01:00

15 lines
176 B
PHP

<?php
namespace DesignPatterns\Structural\Facade;
/**
* Interface OsInterface.
*/
interface OsInterface
{
/**
* Halt the OS.
*/
public function halt();
}