blob: 3a52dc9e1ce08135dbae61222f1ebc062f84adc6 [file] [log] [blame]
Austin Schuh40c16522018-10-28 20:27:54 -07001<?php
2# Generated by the protocol buffer compiler. DO NOT EDIT!
3# source: google/protobuf/type.proto
4
5namespace Google\Protobuf;
6
7/**
8 * The syntax in which a protocol buffer element is defined.
9 *
10 * Protobuf type <code>google.protobuf.Syntax</code>
11 */
12class Syntax
13{
14 /**
15 * Syntax `proto2`.
16 *
17 * Generated from protobuf enum <code>SYNTAX_PROTO2 = 0;</code>
18 */
19 const SYNTAX_PROTO2 = 0;
20 /**
21 * Syntax `proto3`.
22 *
23 * Generated from protobuf enum <code>SYNTAX_PROTO3 = 1;</code>
24 */
25 const SYNTAX_PROTO3 = 1;
26}
27