Вход Регистрация
Файл: sngine-v2.8/Script/includes/libs/Stripe/lib/Service/Radar/RadarServiceFactory.php
Строк: 22
<?php

namespace StripeServiceRadar;

/**
 * Service factory class for API resources in the Radar namespace.
 *
 * @property EarlyFraudWarningService $earlyFraudWarnings
 * @property ValueListItemService $valueListItems
 * @property ValueListService $valueLists
 */
class RadarServiceFactory extends StripeServiceAbstractServiceFactory
{
    
/**
     * @var array<string, string>
     */
    
private static $classMap = [
        
'earlyFraudWarnings' => EarlyFraudWarningService::class,
        
'valueListItems' => ValueListItemService::class,
        
'valueLists' => ValueListService::class,
    ];

    protected function 
getServiceClass($name)
    {
        return 
array_key_exists($nameself::$classMap) ? self::$classMap[$name] : null;
    }
}
Онлайн: 3
Реклама