remove Interface-Suffix

This commit is contained in:
Dominik Liebler
2019-08-19 17:10:52 +02:00
parent 9cb7660704
commit dba45b8098
6 changed files with 7 additions and 7 deletions

View File

@@ -0,0 +1,15 @@
<?php
declare(strict_types=1);
namespace DesignPatterns\Behavioral\Strategy;
interface Comparator
{
/**
* @param mixed $a
* @param mixed $b
*
* @return int
*/
public function compare($a, $b): int;
}