mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-04 14:07:25 +02:00
13 lines
176 B
PHP
13 lines
176 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface OperatingSystem
|
|
{
|
|
public function halt();
|
|
|
|
public function getName(): string;
|
|
}
|