From f6b910c42b00354d46a489f3bf570aebcafdab71 Mon Sep 17 00:00:00 2001 From: Xinchen Hui Date: Fri, 31 May 2013 17:02:33 +0800 Subject: [PATCH] Fix signature --- yaf_plugin.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/yaf_plugin.c b/yaf_plugin.c index 543aa09e..f6d4b50b 100644 --- a/yaf_plugin.c +++ b/yaf_plugin.c @@ -43,49 +43,49 @@ ZEND_END_ARG_INFO() #endif /* }}} */ -/** {{{ proto public Yaf_Plugin::routerStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::routerStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, routerStartup) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::routerShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, routerShutdown) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::dispatchLoopStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::dispatchLoopStartup(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, dispatchLoopStartup) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::preDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::preDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, preDispatch) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::postDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::postDispatch(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, postDispatch) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::dispatchLoopShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::dispatchLoopShutdown(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, dispatchLoopShutdown) { RETURN_TRUE; } /* }}} */ -/** {{{ proto public Yaf_Plugin::preResponse(Yaf_Request_Abstract $request, Yaf_Response_Abstarct $response) +/** {{{ proto public Yaf_Plugin::preResponse(Yaf_Request_Abstract $request, Yaf_Response_Abstract $response) */ PHP_METHOD(yaf_plugin, preResponse) { RETURN_TRUE;