type = $type; $this->staticCallClass = $staticCallClass; $this->staticCallMethod = $staticCallMethod; RectorAssert::className($type); RectorAssert::className($staticCallClass); RectorAssert::methodName($staticCallMethod); } public function getObjectType() : ObjectType { return new ObjectType($this->type); } public function getStaticCallClass() : string { return $this->staticCallClass; } public function getStaticCallMethod() : string { return $this->staticCallMethod; } }