cs Strategy

This commit is contained in:
Dominik Liebler
2013-09-12 11:37:03 +02:00
parent efd71b48e1
commit 3808eab0a0
6 changed files with 149 additions and 111 deletions

View File

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