name ?? null; if (isset($name)) { return "/_ccr/auto_follow/$name"; } return "/_ccr/auto_follow"; } public function getParamWhitelist(): array { return []; } public function getMethod(): string { return 'GET'; } public function setName($name): GetAutoFollowPattern { if (isset($name) !== true) { return $this; } $this->name = $name; return $this; } }