15 lines
176 B
PHP
Raw Normal View History

2013-09-11 16:28:06 +02:00
<?php
namespace DesignPatterns\Structural\Facade;
2013-09-11 16:28:06 +02:00
/**
2016-03-24 09:45:55 +01:00
* Interface OsInterface.
2013-09-11 16:28:06 +02:00
*/
interface OsInterface
{
/**
2016-03-24 09:45:55 +01:00
* Halt the OS.
2013-09-11 16:28:06 +02:00
*/
public function halt();
}