Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
vendor
/
stripe
/
stripe-php
/
lib
/
Service
/
Checkout
:
CheckoutServiceFactory.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?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; } }