From cdd7ad020e165fe680703b6d3319b908b682fb7a Mon Sep 17 00:00:00 2001 From: Andrew Dolgov Date: Fri, 20 Oct 2023 17:12:29 +0300 Subject: jaeger-client -> opentelemetry --- .../jaeger-client-php/src/Jaeger/Thrift/Batch.php | 71 ---------------------- 1 file changed, 71 deletions(-) delete mode 100644 vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Batch.php (limited to 'vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Batch.php') diff --git a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Batch.php b/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Batch.php deleted file mode 100644 index 56e9e5206..000000000 --- a/vendor/jonahgeorge/jaeger-client-php/src/Jaeger/Thrift/Batch.php +++ /dev/null @@ -1,71 +0,0 @@ - array( - 'var' => 'process', - 'isRequired' => true, - 'type' => TType::STRUCT, - 'class' => '\Jaeger\Thrift\Process', - ), - 2 => array( - 'var' => 'spans', - 'isRequired' => true, - 'type' => TType::LST, - 'etype' => TType::STRUCT, - 'elem' => array( - 'type' => TType::STRUCT, - 'class' => '\Jaeger\Thrift\Span', - ), - ), - ); - - /** - * @var \Jaeger\Thrift\Process - */ - public $process = null; - /** - * @var \Jaeger\Thrift\Span[] - */ - public $spans = null; - - public function __construct($vals=null) { - if (is_array($vals)) { - parent::__construct(self::$_TSPEC, $vals); - } - } - - public function getName() { - return 'Batch'; - } - - public function read($input) - { - return $this->_read('Batch', self::$_TSPEC, $input); - } - - public function write($output) { - return $this->_write('Batch', self::$_TSPEC, $output); - } - -} - -- cgit v1.2.3