From 4150e7db3d867cf06ec44ec294fc8e9098c0220e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Wed, 16 Aug 2017 07:34:26 +0200 Subject: Update to 0.0.2 --- REFLECTION | 141 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 141 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..ddaabe1 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,141 @@ +Extension [ extension #15 opencensus version 0.0.2 ] { + + - Functions { + Function [ function opencensus_version ] { + } + Function [ function opencensus_trace_function ] { + + - Parameters [2] { + Parameter #0 [ string $functionName ] + Parameter #1 [ $handler ] + } + } + Function [ function opencensus_trace_method ] { + + - Parameters [3] { + Parameter #0 [ string $className ] + Parameter #1 [ string $methodName ] + Parameter #2 [ $handler ] + } + } + Function [ function opencensus_trace_list ] { + } + Function [ function opencensus_trace_begin ] { + + - Parameters [2] { + Parameter #0 [ string $spanName ] + Parameter #1 [ array $spanOptions ] + } + } + Function [ function opencensus_trace_finish ] { + } + Function [ function opencensus_trace_clear ] { + } + Function [ function opencensus_trace_set_context ] { + + - Parameters [2] { + Parameter #0 [ string $traceId ] + Parameter #1 [ string $parentSpanId ] + } + } + Function [ function opencensus_trace_context ] { + } + Function [ function opencensus_trace_add_label ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] + } + } + Function [ function opencensus_trace_add_root_label ] { + + - Parameters [2] { + Parameter #0 [ string $key ] + Parameter #1 [ string $value ] + } + } + } + + - Classes [2] { + Class [ class OpenCensus\Trace\Span ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [6] { + Property [ protected $name ] + Property [ protected $spanId ] + Property [ protected $parentSpanId ] + Property [ protected $startTime ] + Property [ protected $endTime ] + Property [ protected $labels ] + } + + - Methods [7] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ array $spanOptions ] + } + } + + Method [ public method name ] { + } + + Method [ public method spanId ] { + } + + Method [ public method parentSpanId ] { + } + + Method [ public method labels ] { + } + + Method [ public method startTime ] { + } + + Method [ public method endTime ] { + } + } + } + + Class [ class OpenCensus\Trace\Context ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [2] { + Property [ protected $spanId ] + Property [ protected $traceId ] + } + + - Methods [3] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ array $contextOptions ] + } + } + + Method [ public method spanId ] { + } + + Method [ public method traceId ] { + } + } + } + } +} + -- cgit