Function __global->escrow_update_receiving_member
Definitions
sources/points_escrow.php
- Update (and log) the receiving member of an escrow.This assumes the receiving member is set to null; if not, this will error.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $id | AUTO_LINK | No | No | required parameter | N/A | N/A | The ID of the escrow to edit |
| $receiving_member | MEMBER | No | No | required parameter | N/A | N/A | The member to set as the receiving member |
Preview
Code (PHP)
/**
* Update (and log) the receiving member of an escrow.This assumes the receiving member is set to null; if not, this will error.
*
* @param AUTO_LINK $id The ID of the escrow to edit
* @param MEMBER $receiving_member The member to set as the receiving member
*/
function escrow_update_receiving_member(int $id, int $receiving_member)
* Update (and log) the receiving member of an escrow.This assumes the receiving member is set to null; if not, this will error.
*
* @param AUTO_LINK $id The ID of the escrow to edit
* @param MEMBER $receiving_member The member to set as the receiving member
*/
function escrow_update_receiving_member(int $id, int $receiving_member)

