mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-23 17:22:41 +01:00
11 lines
175 B
PHP
11 lines
175 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface OperatingSystem
|
|
{
|
|
public function halt();
|
|
|
|
public function getName(): string;
|
|
}
|