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