Skip to content
Snippets Groups Projects
Commit 122c687d authored by Stanley Cheung's avatar Stanley Cheung
Browse files

Fix various PHP bugs

parent 1b59bfc5
No related branches found
No related tags found
No related merge requests found
...@@ -39,10 +39,12 @@ protoc --proto_path=src/proto/math \ ...@@ -39,10 +39,12 @@ protoc --proto_path=src/proto/math \
# replace the Empty message with EmptyMessage # replace the Empty message with EmptyMessage
# because Empty is a PHP reserved word # because Empty is a PHP reserved word
sed -i 's/message Empty/message EmptyMessage/g' \ sed 's/message Empty/message EmptyMessage/g' \
src/proto/grpc/testing/empty.proto src/proto/grpc/testing/empty.proto > empty.proto
sed -i 's/grpc\.testing\.Empty/grpc\.testing\.EmptyMessage/g' \ mv empty.proto ./src/proto/grpc/testing
src/proto/grpc/testing/test.proto sed 's/grpc\.testing\.Empty/grpc\.testing\.EmptyMessage/g' \
src/proto/grpc/testing/test.proto > test.proto
mv test.proto ./src/proto/grpc/testing
protoc --proto_path=. \ protoc --proto_path=. \
--php_out=src/php/tests/interop \ --php_out=src/php/tests/interop \
...@@ -53,7 +55,10 @@ protoc --proto_path=. \ ...@@ -53,7 +55,10 @@ protoc --proto_path=. \
src/proto/grpc/testing/test.proto src/proto/grpc/testing/test.proto
# change it back # change it back
sed -i 's/message EmptyMessage/message Empty/g' \ sed 's/message EmptyMessage/message Empty/g' \
src/proto/grpc/testing/empty.proto src/proto/grpc/testing/empty.proto > empty.proto
sed -i 's/grpc\.testing\.EmptyMessage/grpc\.testing\.Empty/g' \ mv empty.proto ./src/proto/grpc/testing
src/proto/grpc/testing/test.proto sed 's/grpc\.testing\.EmptyMessage/grpc\.testing\.Empty/g' \
src/proto/grpc/testing/test.proto > test.proto
mv test.proto ./src/proto/grpc/testing
...@@ -271,7 +271,7 @@ class BaseStub ...@@ -271,7 +271,7 @@ class BaseStub
* @return ClientStreamingSurfaceActiveCall The active call object * @return ClientStreamingSurfaceActiveCall The active call object
*/ */
public function _clientStreamRequest($method, public function _clientStreamRequest($method,
callable $deserialize, $deserialize,
array $metadata = [], array $metadata = [],
array $options = []) array $options = [])
{ {
...@@ -307,7 +307,7 @@ class BaseStub ...@@ -307,7 +307,7 @@ class BaseStub
*/ */
public function _serverStreamRequest($method, public function _serverStreamRequest($method,
$argument, $argument,
callable $deserialize, $deserialize,
array $metadata = [], array $metadata = [],
array $options = []) array $options = [])
{ {
...@@ -340,7 +340,7 @@ class BaseStub ...@@ -340,7 +340,7 @@ class BaseStub
* @return BidiStreamingSurfaceActiveCall The active call object * @return BidiStreamingSurfaceActiveCall The active call object
*/ */
public function _bidiRequest($method, public function _bidiRequest($method,
callable $deserialize, $deserialize,
array $metadata = [], array $metadata = [],
array $options = []) array $options = [])
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment