From 51cde96fee9e970d399e91db0c019dc5a66f6317 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Thu, 23 Nov 2023 08:20:16 +0100 Subject: initial package for version 1.0.0 (PHP 8.4) --- REFLECTION | 210 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 210 insertions(+) create mode 100644 REFLECTION (limited to 'REFLECTION') diff --git a/REFLECTION b/REFLECTION new file mode 100644 index 0000000..16876ff --- /dev/null +++ b/REFLECTION @@ -0,0 +1,210 @@ +Extension [ extension #58 pspell version 1.0.0 ] { + + - Constants [4] { + Constant [ int PSPELL_FAST ] { 1 } + Constant [ int PSPELL_NORMAL ] { 2 } + Constant [ int PSPELL_BAD_SPELLERS ] { 3 } + Constant [ int PSPELL_RUN_TOGETHER ] { 8 } + } + + - Functions { + Function [ function pspell_new ] { + + - Parameters [5] { + Parameter #0 [ string $language ] + Parameter #1 [ string $spelling = "" ] + Parameter #2 [ string $jargon = "" ] + Parameter #3 [ string $encoding = "" ] + Parameter #4 [ int $mode = 0 ] + } + - Return [ PSpell\Dictionary|false ] + } + Function [ function pspell_new_personal ] { + + - Parameters [6] { + Parameter #0 [ string $filename ] + Parameter #1 [ string $language ] + Parameter #2 [ string $spelling = "" ] + Parameter #3 [ string $jargon = "" ] + Parameter #4 [ string $encoding = "" ] + Parameter #5 [ int $mode = 0 ] + } + - Return [ PSpell\Dictionary|false ] + } + Function [ function pspell_new_config ] { + + - Parameters [1] { + Parameter #0 [ PSpell\Config $config ] + } + - Return [ PSpell\Dictionary|false ] + } + Function [ function pspell_check ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + Parameter #1 [ string $word ] + } + - Return [ bool ] + } + Function [ function pspell_suggest ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + Parameter #1 [ string $word ] + } + - Return [ array|false ] + } + Function [ function pspell_store_replacement ] { + + - Parameters [3] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + Parameter #1 [ string $misspelled ] + Parameter #2 [ string $correct ] + } + - Return [ bool ] + } + Function [ function pspell_add_to_personal ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + Parameter #1 [ string $word ] + } + - Return [ bool ] + } + Function [ function pspell_add_to_session ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + Parameter #1 [ string $word ] + } + - Return [ bool ] + } + Function [ function pspell_clear_session ] { + + - Parameters [1] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + } + - Return [ bool ] + } + Function [ function pspell_save_wordlist ] { + + - Parameters [1] { + Parameter #0 [ PSpell\Dictionary $dictionary ] + } + - Return [ bool ] + } + Function [ function pspell_config_create ] { + + - Parameters [4] { + Parameter #0 [ string $language ] + Parameter #1 [ string $spelling = "" ] + Parameter #2 [ string $jargon = "" ] + Parameter #3 [ string $encoding = "" ] + } + - Return [ PSpell\Config ] + } + Function [ function pspell_config_runtogether ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ bool $allow ] + } + - Return [ bool ] + } + Function [ function pspell_config_mode ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ int $mode ] + } + - Return [ bool ] + } + Function [ function pspell_config_ignore ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ int $min_length ] + } + - Return [ bool ] + } + Function [ function pspell_config_personal ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ string $filename ] + } + - Return [ bool ] + } + Function [ function pspell_config_dict_dir ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ string $directory ] + } + - Return [ bool ] + } + Function [ function pspell_config_data_dir ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ string $directory ] + } + - Return [ bool ] + } + Function [ function pspell_config_repl ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ string $filename ] + } + - Return [ bool ] + } + Function [ function pspell_config_save_repl ] { + + - Parameters [2] { + Parameter #0 [ PSpell\Config $config ] + Parameter #1 [ bool $save ] + } + - Return [ bool ] + } + } + + - Classes [2] { + Class [ final class PSpell\Dictionary ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + + Class [ final class PSpell\Config ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [0] { + } + + - Methods [0] { + } + } + } +} + -- cgit