DesignPatternsPHP/Behavioral/Strategy/ComparatorInterface.php
Dominik Liebler 36f3df8fbb PHP7 Strategy
2016-09-22 11:02:03 +02:00

15 lines
218 B
PHP

<?php
namespace DesignPatterns\Behavioral\Strategy;
interface ComparatorInterface
{
/**
* @param mixed $a
* @param mixed $b
*
* @return int
*/
public function compare($a, $b): int;
}