mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
15 lines
159 B
PHP
15 lines
159 B
PHP
|
<?php
|
||
|
|
||
|
namespace DesignPatterns\Facade;
|
||
|
|
||
|
/**
|
||
|
* Class OsInterface
|
||
|
*/
|
||
|
interface OsInterface
|
||
|
{
|
||
|
/**
|
||
|
* halt the OS
|
||
|
*/
|
||
|
public function halt();
|
||
|
}
|