From 8ecf5dcd822a245b1d138b893ed843f2f38567b2 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 28 Nov 2022 08:02:51 +0100 Subject: update to 0.9.3 drop patch merged upstream --- REFLECTION | 124 +++++++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 97 insertions(+), 27 deletions(-) (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION index f235443..ee666bc 100644 --- a/REFLECTION +++ b/REFLECTION @@ -1,7 +1,7 @@ -Extension [ extension #117 mustache version 0.9.2 ] { +Extension [ extension #122 mustache version 0.9.3 ] { - Classes [7] { - Class [ class MustacheAST ] { + Class [ class MustacheAST implements Stringable ] { - Constants [0] { } @@ -13,14 +13,14 @@ Extension [ extension #117 mustache version 0.9.2 ] { } - Properties [1] { - Property [ protected $binaryString ] + Property [ protected $binaryString = NULL ] } - Methods [5] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $vars ] + Parameter #0 [ $vars = ] } } @@ -36,10 +36,11 @@ Extension [ extension #117 mustache version 0.9.2 ] { } } - Method [ public method __toString ] { + Method [ public method __toString ] { - Parameters [0] { } + - Return [ string ] } Method [ public method __wakeup ] { @@ -172,7 +173,7 @@ Extension [ extension #117 mustache version 0.9.2 ] { } } - Class [ class MustacheTemplate ] { + Class [ class MustacheTemplate implements Stringable ] { - Constants [0] { } @@ -184,26 +185,27 @@ Extension [ extension #117 mustache version 0.9.2 ] { } - Properties [1] { - Property [ protected $template ] + Property [ protected $template = NULL ] } - Methods [2] { Method [ public method __construct ] { - Parameters [1] { - Parameter #0 [ $vars ] + Parameter #0 [ $vars = ] } } - Method [ public method __toString ] { + Method [ public method __toString ] { - Parameters [0] { } + - Return [ string ] } } } - Class [ class MustacheException extends Exception implements Throwable ] { + Class [ class MustacheException extends Exception implements Throwable, Stringable ] { - Constants [0] { } @@ -215,52 +217,86 @@ Extension [ extension #117 mustache version 0.9.2 ] { } - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] + 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 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] + 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 ] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] } } } - Class [ class MustacheParserException extends MustacheException implements Throwable ] { + Class [ class MustacheParserException extends MustacheException implements Stringable, Throwable ] { - Constants [0] { } @@ -272,47 +308,81 @@ Extension [ extension #117 mustache version 0.9.2 ] { } - Properties [4] { - Property [ protected $message ] - Property [ protected $code ] - Property [ protected $file ] - Property [ protected $line ] + 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 [ $message ] - Parameter #1 [ $code ] - Parameter #2 [ $previous ] + 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 ] { + Method [ public method __toString ] { + + - Parameters [0] { + } + - Return [ string ] } } } -- cgit