remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 16:50:40 +02:00
parent db3032cd48
commit 132de8e34e
8 changed files with 20 additions and 59 deletions

View File

@ -0,0 +1,9 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Specification;
interface Specification
{
public function isSatisfiedBy(Item $item): bool;
}