user = $user; $this->name = $name; } /** * @inheritDoc */ public function getName(): string { return $this->name; } /** * Returns true if the user is logged-in and false otherwise. * * @inheritDoc */ public function isMet(): bool { return $this->user->isRegistered(); } }