xref: /ext-ds/src/php/classes/php_pair_ce.h (revision 07801172)
1 #ifndef DS_PAIR_CE_H
2 #define DS_PAIR_CE_H
3 
4 #include "php.h"
5 #include "../../common.h"
6 #include "../arginfo.h"
7 
8 extern zend_class_entry *php_ds_pair_ce;
9 
10 ARGINFO_OPTIONAL_ZVAL_OPTIONAL_ZVAL(    Pair___construct, key, value);
11 ARGINFO_NONE_RETURN_DS(                 Pair_copy, Pair);
12 ARGINFO_NONE_RETURN_ARRAY(              Pair_toArray);
13 ARGINFO_NONE_RETURN_TYPE(               Pair_jsonSerialize, IS_MIXED);
14 
15 void php_ds_register_pair();
16 
17 #endif
18