mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-09-25 22:09:23 +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;
|
|
}
|