Это мой код Laravel, но я думаю, что могу использовать более старую версию функции Stripe.Вот почему я получаю эту ошибку, может кто-нибудь помочь мне с этим, пожалуйста?
<?php
use Illuminate\Support\Facades\Cache;
use Stripe\Stripe;
class Plan
{
public static function getStripePlans()
{
// Set the API Key
Stripe::setApiKey(User::getStripeKey());
try {
// Fetch all the Plans and cache it
return Cache::remember('stripe.plans', 60 * 24, function () {
return \Stripe\Plan::all()->data;
});
} catch (\Exception $e) {
return false;
}
}
}