droppedFramesCount = $droppedFramesCount; } /** * @return int */ public function getDroppedFramesCount() { return $this->droppedFramesCount; } /** * @param StackFrame[] */ public function setFrame($frame) { $this->frame = $frame; } /** * @return StackFrame[] */ public function getFrame() { return $this->frame; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(StackFrames::class, 'Google_Service_CloudTrace_StackFrames');