You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
466 B

<?php
/**
* @property string $ak
* @property string $sk
* @property string $operateDomain
* @property int $startTime
* @property int $endTime
* @property string $exampleDomain
*/
class Config {
public function __construct() {
$this->ak = "ak";
$this->sk = "sk";
$this->operateDomain = 'operate.com';
$this->exampleDomain = 'example.com';
$this->startTime = time();
$this->endTime = time() + 60*10;
}
}