app\models\Gateway::getFields PHP Method

getFields() public method

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