-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathjsonpath_arginfo.h
41 lines (28 loc) · 1.26 KB
/
jsonpath_arginfo.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/* This is a generated file, edit the .stub.php file instead.
* Stub hash: 0c874327bc35f4dfd0da2120cb50e2b8d299e28b */
ZEND_BEGIN_ARG_WITH_RETURN_TYPE_MASK_EX(arginfo_class_JsonPath_JsonPath_find, 0, 2, MAY_BE_ARRAY|MAY_BE_FALSE)
ZEND_ARG_TYPE_INFO(0, data, IS_ARRAY, 0)
ZEND_ARG_TYPE_INFO(0, expression, IS_STRING, 0)
ZEND_END_ARG_INFO()
ZEND_METHOD(JsonPath_JsonPath, find);
static const zend_function_entry class_JsonPath_JsonPath_methods[] = {
ZEND_ME(JsonPath_JsonPath, find, arginfo_class_JsonPath_JsonPath_find, ZEND_ACC_PUBLIC)
ZEND_FE_END
};
static const zend_function_entry class_JsonPath_JsonPathException_methods[] = {
ZEND_FE_END
};
static zend_class_entry *register_class_JsonPath_JsonPath(void)
{
zend_class_entry ce, *class_entry;
INIT_NS_CLASS_ENTRY(ce, "JsonPath", "JsonPath", class_JsonPath_JsonPath_methods);
class_entry = zend_register_internal_class_ex(&ce, NULL);
return class_entry;
}
static zend_class_entry *register_class_JsonPath_JsonPathException(zend_class_entry *class_entry_RuntimeException)
{
zend_class_entry ce, *class_entry;
INIT_NS_CLASS_ENTRY(ce, "JsonPath", "JsonPathException", class_JsonPath_JsonPathException_methods);
class_entry = zend_register_internal_class_ex(&ce, class_entry_RuntimeException);
return class_entry;
}