id = $id; $this->data = $data; } /** * The job ID, unique on the beanstalkd server. * * @return int */ public function getId(): int { return $this->id; } /** * The job data. * * @return string */ public function getData(): string { return $this->data; } }