Automation init...3

This commit is contained in:
최준흠 2024-09-19 23:24:23 +09:00
parent 2dc97d782e
commit 45c8cd02db
3 changed files with 3 additions and 3 deletions

View File

@ -39,7 +39,7 @@ class AccountController extends MyCloudflare
$this->_email = $this->request->getVar('email');
$this->_api_key = $this->request->getVar('key');
//전송
$result = $this->getMySocket()->create($this->_email);
$result = $this->getMySocket()->create_process($this->_email);
$formDatas = [];
$formDatas['key'] = $this->_api_key;
$entity = $this->getMyStorage()->create_process($result, $formDatas);

View File

@ -43,7 +43,7 @@ class AccountController extends MyCloudflare
$this->_email = $this->request->getVar('email');
$this->_api_key = $this->request->getVar('key');
//전송
$result = $this->getMySocket()->create($this->_email);
$result = $this->getMySocket()->create_process($this->_email);
$formDatas = [];
$formDatas['key'] = $this->_api_key;
$entity = $this->getMyStorage()->create_process($result, $formDatas);

View File

@ -11,7 +11,7 @@ class AccountSocket extends CloudflareSocket
parent::__construct($email, $api_key);
}
final public function create(string $name, string $type = "standard")
final public function create_process(string $name, string $type = "standard")
{
$datas = [
'name' => $name . "'s Account",