mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 17:52:25 +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();
|
|
}
|