Fix travis error

This commit is contained in:
Laurent Destailleur 2017-05-18 22:23:59 +02:00
parent e43e37a14f
commit a28f8c84e4
2 changed files with 4 additions and 2 deletions

View File

@ -793,6 +793,7 @@ function createOrder($authentication,$order)
* *
* @param array $authentication Array of authentication information * @param array $authentication Array of authentication information
* @param int $id Id of order to validate * @param int $id Id of order to validate
* @param int $id_warehouse Id of warehouse to use for stock decrease
* @return array Array result * @return array Array result
*/ */
function validOrder($authentication,$id='',$id_warehouse=0) function validOrder($authentication,$id='',$id_warehouse=0)

View File

@ -129,11 +129,12 @@ $server->register(
'WS to create a new payment' 'WS to create a new payment'
); );
/** /**
* Create a payment * Create a payment
* *
* @param array $authentication Array of authentication information * @param array $authentication Array of authentication information
* @param Facture $invoice Invoice * @param Object $payment Payment
* @return array Array result * @return array Array result
*/ */
function createPayment($authentication, $payment) function createPayment($authentication, $payment)