_job = $job; } /* (non-phpdoc) * @see Command::getCommandLine() */ public function getCommandLine() { return sprintf('touch %u', $this->_job->getId()); } /* (non-phpdoc) * @see ResponseParser::parseResponse() */ public function parseResponse($responseLine, $responseData) { if ($responseLine == Response::RESPONSE_NOT_FOUND) { throw new Exception\ServerException(sprintf( 'Job %u %s: does not exist or is not reserved by client', $this->_job->getId(), $responseLine )); } return $this->_createResponse($responseLine); } }