mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-02-24 01:32:22 +01:00
18 lines
251 B
PHP
18 lines
251 B
PHP
<?php
|
|
|
|
namespace DesignPatterns\Behavioral\Strategy;
|
|
|
|
/**
|
|
* Class ComparatorInterface
|
|
*/
|
|
interface ComparatorInterface
|
|
{
|
|
/**
|
|
* @param mixed $a
|
|
* @param mixed $b
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function compare($a, $b);
|
|
}
|