6f325805c0
* 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.
9 lines
107 B
Protocol Buffer
9 lines
107 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package foo;
|
|
option php_namespace = "";
|
|
|
|
message TestEmptyNamespace {
|
|
int32 a = 1;
|
|
}
|