12 lines
171 B
PHP
Raw Normal View History

2013-09-11 16:28:06 +02:00
<?php
2019-08-17 21:58:04 +02:00
declare(strict_types=1);
2013-09-11 16:28:06 +02:00
namespace DesignPatterns\Structural\Facade;
2013-09-11 16:28:06 +02:00
interface OsInterface
{
public function halt();
2016-09-23 10:19:17 +02:00
public function getName(): string;
2013-09-11 16:28:06 +02:00
}