mirror of
https://github.com/DesignPatternsPHP/DesignPatternsPHP.git
synced 2025-08-16 20:03:58 +02:00
removed Interface-suffix
This commit is contained in:
@@ -5,14 +5,14 @@ namespace DesignPatterns\Behavioral\Mediator;
|
||||
abstract class Colleague
|
||||
{
|
||||
/**
|
||||
* @var MediatorInterface
|
||||
* @var Mediator
|
||||
*/
|
||||
protected $mediator;
|
||||
|
||||
/**
|
||||
* @param MediatorInterface $mediator
|
||||
* @param Mediator $mediator
|
||||
*/
|
||||
public function setMediator(MediatorInterface $mediator)
|
||||
public function setMediator(Mediator $mediator)
|
||||
{
|
||||
$this->mediator = $mediator;
|
||||
}
|
||||
|
Reference in New Issue
Block a user