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