Lines Matching refs:response
31 $response = new \Conformance\ConformanceResponse();
34 $response->setProtobufPayload("");
35 return $response;
40 $response->setParseError($e->getMessage());
41 return $response;
44 $response->setSkipped("PHP doesn't support proto2");
45 return $response;
57 $response->setParseError($e->getMessage());
58 return $response;
61 $response->setSkipped("PHP doesn't support text format yet");
62 return $response;
70 $response->setProtobufPayload($test_message->serializeToString());
73 $response->setJsonPayload($test_message->serializeToJsonString());
75 $response->setSerializeError($e->getMessage());
76 return $response;
80 return $response;
102 $response = doTest($request);
104 $serialized_response = $response->serializeToString();