Skip to content

Commit

Permalink
Fix signature
Browse files Browse the repository at this point in the history
  • Loading branch information
laruence committed May 31, 2013
1 parent d17e017 commit f6b910c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions yaf_plugin.c
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f6b910c

Please sign in to comment.