Add php protobuffer support for transition to GTFS-realtime
[busui.git] / lib / Protobuf-PHP / library / DrSlump / Protobuf / Codec / PhpArray / Unknown.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php
 
namespace DrSlump\Protobuf\Codec\PhpArray;
 
class Unknown extends \DrSlump\Protobuf\Unknown
{
    public function __construct($tag, $type, $data)
    {
        $this->tag = $tag;
        $this->type = $type;
        $this->data = $data;
    }
}