cs Facade

This commit is contained in:
Dominik Liebler
2013-09-11 16:28:06 +02:00
parent 454382d8fb
commit 754ea98fb2
3 changed files with 65 additions and 10 deletions

14
Facade/OsInterface.php Normal file
View File

@@ -0,0 +1,14 @@
<?php
namespace DesignPatterns\Facade;
/**
* Class OsInterface
*/
interface OsInterface
{
/**
* halt the OS
*/
public function halt();
}