From 37665f8f02b93378134cbdba046fee570812251a Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 10 Oct 2022 09:20:11 +0200 Subject: initial package --- REFLECTION | 117 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 117 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..e7bdd69 --- /dev/null +++ b/REFLECTION @@ -0,0 +1,117 @@ +Extension [ extension #72 bsdiff version 0.1.1 ] { + + - Functions { + Function [ function bsdiff_diff ] { + + - Parameters [3] { + Parameter #0 [ string $old_file ] + Parameter #1 [ string $new_file ] + Parameter #2 [ string $diff_file ] + } + - Return [ void ] + } + Function [ function bsdiff_patch ] { + + - Parameters [3] { + Parameter #0 [ string $old_file ] + Parameter #1 [ string $new_file ] + Parameter #2 [ string $diff_file ] + } + - Return [ void ] + } + } + + - Classes [1] { + Class [ class BsdiffException extends Exception implements Throwable, Stringable ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [4] { + Property [ protected $message = '' ] + Property [ protected $code = 0 ] + Property [ protected $file = NULL ] + Property [ protected $line = NULL ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [3] { + Parameter #0 [ string $message = "" ] + Parameter #1 [ int $code = 0 ] + Parameter #2 [ ?Throwable $previous = null ] + } + } + + Method [ public method __wakeup ] { + + - Parameters [0] { + } + } + + Method [ final public method getMessage ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getCode ] { + + - Parameters [0] { + } + } + + Method [ final public method getFile ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ final public method getLine ] { + + - Parameters [0] { + } + - Return [ int ] + } + + Method [ final public method getTrace ] { + + - Parameters [0] { + } + - Return [ array ] + } + + Method [ final public method getPrevious ] { + + - Parameters [0] { + } + - Return [ ?Throwable ] + } + + Method [ final public method getTraceAsString ] { + + - Parameters [0] { + } + - Return [ string ] + } + + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] + } + } + } + } +} + -- cgit