mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 09:42:24 +01:00
12 lines
171 B
PHP
12 lines
171 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface OsInterface
|
|
{
|
|
public function halt();
|
|
|
|
public function getName(): string;
|
|
}
|