Files
YeePay/lib/Config/AppSdkConfigProvider.php
2024-04-01 09:54:43 +08:00

24 lines
349 B
PHP

<?php
namespace Yeepay\Yop\Sdk\Config;
interface AppSdkConfigProvider
{
/**
* @param $appKey string
* @return AppSdkConfig
*/
public function getConfig($appKey);
/**
* @return array
*/
public function getAllConfig();
/**
* @return AppSdkConfig
*/
public function getDefaultConfig();
}