cpuProcessor = $cpuProcessor; } /** * @return string */ public function getCpuProcessor() { return $this->cpuProcessor; } /** * @param float */ public function setCpuSpeedInGhz($cpuSpeedInGhz) { $this->cpuSpeedInGhz = $cpuSpeedInGhz; } /** * @return float */ public function getCpuSpeedInGhz() { return $this->cpuSpeedInGhz; } /** * @param int */ public function setNumberOfCores($numberOfCores) { $this->numberOfCores = $numberOfCores; } /** * @return int */ public function getNumberOfCores() { return $this->numberOfCores; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CPUInfo::class, 'Google_Service_ToolResults_CPUInfo');