1 
2 extern zend_class_entry *phalcon_annotations_adapterinterface_ce;
3 
4 ZEPHIR_INIT_CLASS(Phalcon_Annotations_AdapterInterface);
5 
6 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_setreader, 0, 0, 1)
7 	ZEND_ARG_OBJ_INFO(0, reader, Phalcon\\Annotations\\ReaderInterface, 0)
ZEND_END_ARG_INFO()8 ZEND_END_ARG_INFO()
9 
10 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_get, 0, 0, 1)
11 	ZEND_ARG_INFO(0, className)
12 ZEND_END_ARG_INFO()
13 
14 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getmethods, 0, 0, 1)
15 	ZEND_ARG_INFO(0, className)
16 ZEND_END_ARG_INFO()
17 
18 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getmethod, 0, 0, 2)
19 	ZEND_ARG_INFO(0, className)
20 	ZEND_ARG_INFO(0, methodName)
21 ZEND_END_ARG_INFO()
22 
23 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getproperties, 0, 0, 1)
24 	ZEND_ARG_INFO(0, className)
25 ZEND_END_ARG_INFO()
26 
27 ZEND_BEGIN_ARG_INFO_EX(arginfo_phalcon_annotations_adapterinterface_getproperty, 0, 0, 2)
28 	ZEND_ARG_INFO(0, className)
29 	ZEND_ARG_INFO(0, propertyName)
30 ZEND_END_ARG_INFO()
31 
32 ZEPHIR_INIT_FUNCS(phalcon_annotations_adapterinterface_method_entry) {
33 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, setReader, arginfo_phalcon_annotations_adapterinterface_setreader)
34 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getReader, NULL)
35 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, get, arginfo_phalcon_annotations_adapterinterface_get)
36 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getMethods, arginfo_phalcon_annotations_adapterinterface_getmethods)
37 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getMethod, arginfo_phalcon_annotations_adapterinterface_getmethod)
38 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getProperties, arginfo_phalcon_annotations_adapterinterface_getproperties)
39 	PHP_ABSTRACT_ME(Phalcon_Annotations_AdapterInterface, getProperty, arginfo_phalcon_annotations_adapterinterface_getproperty)
40 	PHP_FE_END
41 };
42