I'm using this Cakephp StripeComponent plugin : https://github.com/chronon/CakePHP-StripeComponent-Plugin
Everything is working fine but I can't cancel the subscription with this plugin.
I had tried this https://stripe.com/docs/api#cancel_subscription, but no success.
As its saying to retrieve
the subscription and then cancel()
But this plugin doesn't have any retrieve subscription
function.
When I tried this,
$sub = \Stripe\Subscription::retrieve('SUBSCRIPTION_ID');
$sub->cancel();
I'm getting error Fatal error: Call to undefined method Stripe\Subscription::retrieve()
I'm stuck.. Please help me out from this.
Fatal error: Call to undefined method Stripe\Subscription::retrieve()
– Slotter