Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / tests / protos / Annotated / Simple.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
 
namespace Tests\Annotated;
 
class Simple extends \DrSlump\Protobuf\AnnotatedMessage
{
    /** @protobuf(tag=1, type=string, required) */
    public $foo;
    /** @protobuf(tag=2, type=int32, required) */
    public $bar;
    /** @protobuf(tag=3, type=string, optional) */
    public $baz;
}