app\models\Gateway::getFields PHP 메소드

getFields() 공개 메소드

public getFields ( ) : mixed
리턴 mixed
    public function getFields()
    {
        if ($this->isCustom()) {
            return ['name' => '', 'text' => ''];
        } else {
            return Omnipay::create($this->provider)->getDefaultParameters();
        }
    }