Files
DesignPatternsPHP/Behavioral/Strategy/ComparatorInterface.php
2015-12-21 07:28:20 -05:00

18 lines
252 B
PHP

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