protobuf/php/tests/proto/test_empty_php_namespace.proto
Paul Yang 6f325805c0 Add new file option php_namespace. (#3162)
* Add new file option php_namespace.

Use this option to change the namespace of php generated classes.
Default is empty. When this option is empty, the package name will be
used for determining the namespace.

* Uncomment commented tests

* Revert gdb test change

* Update csharp descriptor.

* Add test for empty php_namespace.
2017-06-05 00:10:18 -07:00

9 lines
107 B
Protocol Buffer

syntax = "proto3";
package foo;
option php_namespace = "";
message TestEmptyNamespace {
int32 a = 1;
}