Files
huangjingfen/pro_v3.5.1/vendor/aliyuncs/oss-sdk-php/samples/Config.php
panchengyong 7acbf45ff7 new files
2026-03-07 22:29:07 +08:00

16 lines
370 B
PHP
Executable File

<?php
/**
* Class Config
*
* Make configurations required by the sample.
* Users can run RunAll.php which runs all the samples after configuring Endpoint, AccessId, and AccessKey.
*/
final class Config
{
const OSS_ACCESS_ID = 'update me';
const OSS_ACCESS_KEY = 'update me';
const OSS_ENDPOINT = 'update me';
const OSS_TEST_BUCKET = 'update me';
}