Fix: Corriger le type PDO dans StripeService et retirer getConnection()
This commit is contained in:
23
api/vendor/stripe/stripe-php/lib/Events/V1BillingMeterNoMeterFoundEvent.php
vendored
Normal file
23
api/vendor/stripe/stripe-php/lib/Events/V1BillingMeterNoMeterFoundEvent.php
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
|
||||
// File generated from our OpenAPI spec
|
||||
|
||||
namespace Stripe\Events;
|
||||
|
||||
/**
|
||||
* @property \Stripe\EventData\V1BillingMeterNoMeterFoundEventData $data data associated with the event
|
||||
*/
|
||||
class V1BillingMeterNoMeterFoundEvent extends \Stripe\V2\Event
|
||||
{
|
||||
const LOOKUP_TYPE = 'v1.billing.meter.no_meter_found';
|
||||
|
||||
public static function constructFrom($values, $opts = null, $apiMode = 'v2')
|
||||
{
|
||||
$evt = parent::constructFrom($values, $opts, $apiMode);
|
||||
if (null !== $evt->data) {
|
||||
$evt->data = \Stripe\EventData\V1BillingMeterNoMeterFoundEventData::constructFrom($evt->data, $opts, $apiMode);
|
||||
}
|
||||
|
||||
return $evt;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user