fq_classlike_name = $fq_classlike_name; $this->method_name_lowercase = $method_name_lowercase; $this->source = $source; $this->code_location = $code_location; } public function getFqClasslikeName(): string { return $this->fq_classlike_name; } public function getMethodNameLowercase(): string { return $this->method_name_lowercase; } public function getSource(): ?StatementsSource { return $this->source; } public function getCodeLocation(): ?CodeLocation { return $this->code_location; } }