| OLD | NEW |
| (Empty) |
| 1 <?php | |
| 2 # Generated by the protocol buffer compiler. DO NOT EDIT! | |
| 3 # source: google/protobuf/descriptor.proto | |
| 4 | |
| 5 /** | |
| 6 * Protobuf enum <code>google.protobuf.FieldDescriptorProto.Label</code> | |
| 7 */ | |
| 8 namespace Google\Protobuf\Internal; | |
| 9 | |
| 10 class FieldDescriptorProto_Label | |
| 11 { | |
| 12 /** | |
| 13 * <pre> | |
| 14 * 0 is reserved for errors | |
| 15 * </pre> | |
| 16 * | |
| 17 * <code>LABEL_OPTIONAL = 1;</code> | |
| 18 */ | |
| 19 const LABEL_OPTIONAL = 1; | |
| 20 /** | |
| 21 * <code>LABEL_REQUIRED = 2;</code> | |
| 22 */ | |
| 23 const LABEL_REQUIRED = 2; | |
| 24 /** | |
| 25 * <code>LABEL_REPEATED = 3;</code> | |
| 26 */ | |
| 27 const LABEL_REPEATED = 3; | |
| 28 } | |
| 29 | |
| OLD | NEW |