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