mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-29 19:20:18 +02:00
11 lines
146 B
PHP
11 lines
146 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Structural\Facade;
|
|
|
|
interface OsInterface
|
|
{
|
|
public function halt();
|
|
|
|
public function getName(): string;
|
|
}
|