protobuf/php/tests/proto/test_prefix.proto
Paul Yang 6b27c1f981 Add file option php_class_prefix (#2849)
This option will be prepended to generated classes of all messages in
the containing file.
2017-03-17 11:08:06 -07:00

7 lines
95 B
Protocol Buffer

syntax = "proto3";
option php_class_prefix = "Prefix";
message TestPrefix {
int32 a = 1;
}