mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-07-30 19:50:12 +02:00
remove Interface-Suffix
This commit is contained in:
@@ -6,11 +6,11 @@ namespace DesignPatterns\Behavioral\Strategy;
|
||||
class Context
|
||||
{
|
||||
/**
|
||||
* @var ComparatorInterface
|
||||
* @var Comparator
|
||||
*/
|
||||
private $comparator;
|
||||
|
||||
public function __construct(ComparatorInterface $comparator)
|
||||
public function __construct(Comparator $comparator)
|
||||
{
|
||||
$this->comparator = $comparator;
|
||||
}
|
||||
|
Reference in New Issue
Block a user