From ebe629a6d1e01a97710171b598e3e8d35c0909fb Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Tue, 27 Oct 2015 11:30:19 +0100 Subject: php-pecl-yac: 2.0.0 (beta, php 7) --- REFLECTION-PHP7 | 125 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 125 insertions(+) create mode 100644 REFLECTION-PHP7 (limited to 'REFLECTION-PHP7') diff --git a/REFLECTION-PHP7 b/REFLECTION-PHP7 new file mode 100644 index 0000000..f540616 --- /dev/null +++ b/REFLECTION-PHP7 @@ -0,0 +1,125 @@ +Extension [ extension #96 yac version 2.0.0 ] { + + - INI { + Entry [ yac.enable ] + Current = '1' + } + Entry [ yac.debug ] + Current = '0' + } + Entry [ yac.keys_memory_size ] + Current = '4M' + } + Entry [ yac.values_memory_size ] + Current = '64M' + } + Entry [ yac.compress_threshold ] + Current = '-1' + } + Entry [ yac.enable_cli ] + Current = '0' + } + } + + - Constants [5] { + Constant [ string YAC_VERSION ] { 2.0.0 } + Constant [ integer YAC_MAX_KEY_LEN ] { 48 } + Constant [ integer YAC_MAX_VALUE_RAW_LEN ] { 67108863 } + Constant [ integer YAC_MAX_RAW_COMPRESSED_LEN ] { 1048576 } + Constant [ string YAC_SERIALIZER ] { PHP } + } + + - Classes [1] { + Class [ class Yac ] { + + - Constants [0] { + } + + - Static properties [0] { + } + + - Static methods [0] { + } + + - Properties [1] { + Property [ protected $_prefix ] + } + + - Methods [10] { + Method [ public method __construct ] { + + - Parameters [1] { + Parameter #0 [ $prefix ] + } + } + + Method [ public method add ] { + + - Parameters [3] { + Parameter #0 [ $keys ] + Parameter #1 [ $value ] + Parameter #2 [ $ttl ] + } + } + + Method [ public method set ] { + + - Parameters [3] { + Parameter #0 [ $keys ] + Parameter #1 [ $value ] + Parameter #2 [ $ttl ] + } + } + + Method [ public method __set ] { + + - Parameters [2] { + Parameter #0 [ $key ] + Parameter #1 [ $value ] + } + } + + Method [ public method get ] { + + - Parameters [1] { + Parameter #0 [ $keys ] + } + } + + Method [ public method __get ] { + + - Parameters [1] { + Parameter #0 [ $key ] + } + } + + Method [ public method delete ] { + + - Parameters [2] { + Parameter #0 [ $keys ] + Parameter #1 [ $ttl ] + } + } + + Method [ public method flush ] { + + - Parameters [0] { + } + } + + Method [ public method info ] { + + - Parameters [0] { + } + } + + Method [ public method dump ] { + + - Parameters [0] { + } + } + } + } + } +} + -- cgit