DrewM\MailChimp\Batch::patch PHP Method

patch() public method

Add an HTTP PATCH request operation to the batch - for performing partial updates
public patch ( string $id, string $method, array $args = [] ) : void
$id string ID for the operation within the batch
$method string URL of the API request method
$args array Assoc array of arguments (usually your data)
return void
    public function patch($id, $method, $args = array())
    {
        $this->queueOperation('PATCH', $id, $method, $args);
    }