remodel file adding to accept paths, streams and plain data as upload files
[m6w6/ext-http] / php_http_fluently_callable.c
1
2 #include "php_http.h"
3
4 zend_class_entry *php_http_fluently_callable_class_entry;
5 zend_function_entry php_http_fluently_callable_method_entry[] = {
6 EMPTY_FUNCTION_ENTRY
7 };
8
9 PHP_MINIT_FUNCTION(http_fluently_callable)
10 {
11 PHP_HTTP_REGISTER_INTERFACE(http, FluentlyCallable, http_fluently_callable, 0);
12 return SUCCESS;
13 }