filter = $filter; $this->isGlobalFilter = $isGlobalFilter; $this->user = $user; $this->target = $target; $this->action = $action; } /** * @return ExistingFilter */ public function getFilter(): ExistingFilter { return $this->filter; } /** * @return bool */ public function getIsGlobalFilter(): bool { return $this->isGlobalFilter; } /** * @return UserIdentity */ public function getUser(): UserIdentity { return $this->user; } /** * @return LinkTarget */ public function getTarget(): LinkTarget { return $this->target; } /** * @return string */ public function getAction(): string { return $this->action; } }