1 #ifndef PSR_HTTP_SERVER_HANDLER_H
2 #define PSR_HTTP_SERVER_HANDLER_H
3 
4 #include "php.h"
5 #include "php_psr.h"
6 
7 #define PHP_PSR_HTTP_SERVER_HANDLER_VERSION "1.0.0"
8 #define PHP_PSR_HTTP_SERVER_HANDLER_VERSION_ID 10000
9 
10 extern PHP_MINIT_FUNCTION(psr_http_server_handler);
11 
12 extern PHP_PSR_API zend_class_entry * PsrHttpServerRequestHandlerInterface_ce_ptr;
13 
14 PHP_PSR_BEGIN_ARG_WITH_RETURN_OBJ_INFO(PsrHttpServerRequestHandlerInterface, handle, 1, Psr\\Http\\Message\\ResponseInterface, 0)
15     ZEND_ARG_OBJ_INFO(0, request, Psr\\Http\\Message\\ServerRequestInterface, 0)
16 PHP_PSR_END_ARG_INFO()
17 
18 #endif /* PSR_HTTP_SERVER_HANDLER_H */
php_psr_register_PsrHttpServerRequestHandlerInterface(INIT_FUNC_ARGS)19 
20 /*
21  * Local variables:
22  * tab-width: 4
23  * c-basic-offset: 4
24  * End:
25  * vim600: fdm=marker
26  * vim: et sw=4 ts=4
27  */
28