diff options
Diffstat (limited to 'REFLECTION')
| -rw-r--r-- | REFLECTION | 167 | 
1 files changed, 146 insertions, 21 deletions
| @@ -1,52 +1,177 @@ -Extension [ <persistent> extension #81 brotli version 0.7.0 ] { +Extension [ <persistent> extension #71 brotli version 0.18.2 ] { + +  - Dependencies { +    Dependency [ apcu (Optional) ] +  }    - INI {      Entry [ brotli.output_compression <ALL> ]        Current = '0'      }      Entry [ brotli.output_compression_level <ALL> ] -      Current = '-1' +      Current = '11' +    } +    Entry [ brotli.output_compression_dict <ALL> ] +      Current = ''      }    } -  - Constants [6] { -    Constant [ integer BROTLI_GENERIC ] { 0 } -    Constant [ integer BROTLI_TEXT ] { 1 } -    Constant [ integer BROTLI_FONT ] { 2 } -    Constant [ integer BROTLI_COMPRESS_LEVEL_MIN ] { 0 } -    Constant [ integer BROTLI_COMPRESS_LEVEL_MAX ] { 11 } -    Constant [ integer BROTLI_COMPRESS_LEVEL_DEFAULT ] { 11 } +  - Constants [12] { +    Constant [ int BROTLI_GENERIC ] { 0 } +    Constant [ int BROTLI_TEXT ] { 1 } +    Constant [ int BROTLI_FONT ] { 2 } +    Constant [ int BROTLI_COMPRESS_LEVEL_MIN ] { 0 } +    Constant [ int BROTLI_COMPRESS_LEVEL_MAX ] { 11 } +    Constant [ int BROTLI_COMPRESS_LEVEL_DEFAULT ] { 11 } +    Constant [ int BROTLI_PROCESS ] { 0 } +    Constant [ int BROTLI_FLUSH ] { 1 } +    Constant [ int BROTLI_FINISH ] { 2 } +    Constant [ bool BROTLI_DICTIONARY_SUPPORT ] { 1 } +    Constant [ int BROTLI_VERSION_NUMBER ] { 16781312 } +    Constant [ string BROTLI_VERSION_TEXT ] { 1.1.0 }    }    - Functions {      Function [ <internal:brotli> function brotli_compress ] { -      - Parameters [3] { -        Parameter #0 [ <required> $data ] -        Parameter #1 [ <optional> $quality ] -        Parameter #2 [ <optional> $mode ] +      - Parameters [4] { +        Parameter #0 [ <required> string $data ] +        Parameter #1 [ <optional> int $level = BROTLI_COMPRESS_LEVEL_DEFAULT ] +        Parameter #2 [ <optional> int $mode = BROTLI_GENERIC ] +        Parameter #3 [ <optional> ?string $dict = null ]        } +      - Return [ string|false ]      }      Function [ <internal:brotli> function brotli_uncompress ] {        - Parameters [2] { -        Parameter #0 [ <required> $data ] -        Parameter #1 [ <optional> $max ] +        Parameter #0 [ <required> string $data ] +        Parameter #1 [ <optional> ?string $dict = null ]        } +      - Return [ string|false ]      }      Function [ <internal:brotli> function Brotli\compress ] { -      - Parameters [3] { -        Parameter #0 [ <required> $data ] -        Parameter #1 [ <optional> $quality ] -        Parameter #2 [ <optional> $mode ] +      - Parameters [4] { +        Parameter #0 [ <required> string $data ] +        Parameter #1 [ <optional> int $level = BROTLI_COMPRESS_LEVEL_DEFAULT ] +        Parameter #2 [ <optional> int $mode = BROTLI_GENERIC ] +        Parameter #3 [ <optional> ?string $dict = null ]        } +      - Return [ string|false ]      }      Function [ <internal:brotli> function Brotli\uncompress ] {        - Parameters [2] { -        Parameter #0 [ <required> $data ] -        Parameter #1 [ <optional> $max ] +        Parameter #0 [ <required> string $data ] +        Parameter #1 [ <optional> ?string $dict = null ] +      } +      - Return [ string|false ] +    } +    Function [ <internal:brotli> function brotli_compress_init ] { + +      - Parameters [3] { +        Parameter #0 [ <optional> int $level = BROTLI_COMPRESS_LEVEL_DEFAULT ] +        Parameter #1 [ <optional> int $mode = BROTLI_GENERIC ] +        Parameter #2 [ <optional> ?string $dict = null ] +      } +      - Return [ Brotli\Compress\Context|false ] +    } +    Function [ <internal:brotli> function brotli_compress_add ] { + +      - Parameters [3] { +        Parameter #0 [ <required> Brotli\Compress\Context $context ] +        Parameter #1 [ <required> string $data ] +        Parameter #2 [ <optional> int $mode = BROTLI_FLUSH ] +      } +      - Return [ string|false ] +    } +    Function [ <internal:brotli> function brotli_uncompress_init ] { + +      - Parameters [1] { +        Parameter #0 [ <optional> ?string $dict = null ] +      } +      - Return [ Brotli\UnCompress\Context|false ] +    } +    Function [ <internal:brotli> function brotli_uncompress_add ] { + +      - Parameters [3] { +        Parameter #0 [ <required> Brotli\UnCompress\Context $context ] +        Parameter #1 [ <required> string $data ] +        Parameter #2 [ <optional> int $mode = BROTLI_FLUSH ] +      } +      - Return [ string|false ] +    } +    Function [ <internal:brotli> function Brotli\compress_init ] { + +      - Parameters [3] { +        Parameter #0 [ <optional> int $level = BROTLI_COMPRESS_LEVEL_DEFAULT ] +        Parameter #1 [ <optional> int $mode = BROTLI_GENERIC ] +        Parameter #2 [ <optional> ?string $dict = null ] +      } +      - Return [ Brotli\Compress\Context|false ] +    } +    Function [ <internal:brotli> function Brotli\compress_add ] { + +      - Parameters [3] { +        Parameter #0 [ <required> Brotli\Compress\Context $context ] +        Parameter #1 [ <required> string $data ] +        Parameter #2 [ <optional> int $mode = BROTLI_FLUSH ] +      } +      - Return [ string|false ] +    } +    Function [ <internal:brotli> function Brotli\uncompress_init ] { + +      - Parameters [1] { +        Parameter #0 [ <optional> ?string $dict = null ] +      } +      - Return [ Brotli\UnCompress\Context|false ] +    } +    Function [ <internal:brotli> function Brotli\uncompress_add ] { + +      - Parameters [3] { +        Parameter #0 [ <required> Brotli\UnCompress\Context $context ] +        Parameter #1 [ <required> string $data ] +        Parameter #2 [ <optional> int $mode = BROTLI_FLUSH ] +      } +      - Return [ string|false ] +    } +  } + +  - Classes [2] { +    Class [ <internal:brotli> final class Brotli\Compress\Context ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [0] { +      } +    } + +    Class [ <internal:brotli> final class Brotli\UnCompress\Context ] { + +      - Constants [0] { +      } + +      - Static properties [0] { +      } + +      - Static methods [0] { +      } + +      - Properties [0] { +      } + +      - Methods [0] {        }      }    } | 
