]> git.proxmox.com Git - ceph.git/blame - ceph/src/jaegertracing/thrift/lib/php/lib/Factory/TTransportFactory.php
buildsys: switch source download to quincy
[ceph.git] / ceph / src / jaegertracing / thrift / lib / php / lib / Factory / TTransportFactory.php
CommitLineData
f67539c2
TL
1<?php
2
3namespace Thrift\Factory;
4
5use Thrift\Transport\TTransport;
6
7class TTransportFactory
8{
9 /**
10 * @static
11 * @param TTransport $transport
12 * @return TTransport
13 */
14 public static function getTransport(TTransport $transport)
15 {
16 return $transport;
17 }
18}