feat: complete assessment tasks

This commit is contained in:
Ayobami
2025-08-11 05:58:17 +01:00
parent 9122c7f108
commit 3b086cfa55
391 changed files with 43053 additions and 7 deletions
@@ -0,0 +1,25 @@
<?php
// File generated from our OpenAPI spec
namespace Stripe\Service\Checkout;
/**
* Service factory class for API resources in the Checkout namespace.
*
* @property SessionService $sessions
*/
class CheckoutServiceFactory extends \Stripe\Service\AbstractServiceFactory
{
/**
* @var array<string, string>
*/
private static $classMap = [
'sessions' => SessionService::class,
];
protected function getServiceClass($name)
{
return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
}
}
File diff suppressed because one or more lines are too long