Files
DesignPatternsPHP/Structural/Facade/OsInterface.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

15 lines
159 B
PHP

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