26 lines
584 B
PHP
26 lines
584 B
PHP
<?php
|
|
|
|
// File generated from our OpenAPI spec
|
|
|
|
namespace Stripe\Service\TestHelpers;
|
|
|
|
/**
|
|
* Service factory class for API resources in the TestHelpers namespace.
|
|
*
|
|
* @property TestClockService $testClocks
|
|
*/
|
|
class TestHelpersServiceFactory extends \Stripe\Service\AbstractServiceFactory
|
|
{
|
|
/**
|
|
* @var array<string, string>
|
|
*/
|
|
private static $classMap = [
|
|
'testClocks' => TestClockService::class,
|
|
];
|
|
|
|
protected function getServiceClass($name)
|
|
{
|
|
return \array_key_exists($name, self::$classMap) ? self::$classMap[$name] : null;
|
|
}
|
|
}
|