Stripe\Plan::update PHP Method

update() public static method

public static update ( string $id, array | null $params = null, array | string | null $options = null ) : Plan
$id string The ID of the plan to update.
$params array | null
$options array | string | null
return Plan The updated plan.
    public static function update($id, $params = null, $options = null)
    {
        return self::_update($id, $params, $options);
    }