Merge pull request #3523 from themesquad/master

Fixed "Strict Standards" warning on the process_payment() declaration.
This commit is contained in:
Mike Jolley 2013-07-24 12:04:26 -07:00
commit f67f48558c
1 changed files with 2 additions and 1 deletions

View File

@ -144,10 +144,11 @@ abstract class WC_Payment_Gateway extends WC_Settings_API {
*
* Process the payment. Override this in your gateway.
*
* @param int $order_id
* @access public
* @return void
*/
function process_payment() {}
function process_payment( $order_id ) {}
/**