mediator; } /** * @param MediatorInterface $medium */ public function __construct(MediatorInterface $medium) { // in this way, we are sure the concrete colleague knows the mediator $this->mediator = $medium; } }