Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / protos / repeated.proto
Maxious 1 package tests;
2
3 message Repeated {
4
5 message Nested {
6 optional int32 id = 1;
7 }
8
9 repeated string string = 1;
10 repeated int32 int = 2;
11 repeated Nested nested = 3;
12 }
13