remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 16:59:16 +02:00
parent 26b1f209e2
commit d102f7d173
6 changed files with 16 additions and 16 deletions

View File

@@ -0,0 +1,11 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Structural\Facade;
interface OperatingSystem
{
public function halt();
public function getName(): string;
}