Subject: | Documentation: customers_update Example is wrong |
Currently, documentation shows this:
$stripe->customers_update(
customer => 'cus_gpj0mzwbQKBI7c',
description => 'updated description'
);
But correct usage is like this:
$stripe->customers_update(
'cus_gpj0mzwbQKBI7c',
description => 'updated description'
);