Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / protos / repeated.proto
blob:a/lib/Protobuf-PHP/tests/protos/repeated.proto -> blob:b/lib/Protobuf-PHP/tests/protos/repeated.proto
  package tests;
   
  message Repeated {
   
  message Nested {
  optional int32 id = 1;
  }
   
  repeated string string = 1;
  repeated int32 int = 2;
  repeated Nested nested = 3;
  }