. */ namespace Storefront\BTCPay\Model\Config\Source; class HttpScheme implements \Magento\Framework\Data\OptionSourceInterface { public function toOptionArray() { return [ 'https' => 'HTTPS (Recommended)', 'http' => 'HTTP (Unsecure, but may be needed if you run BTCPay Server on TOR)', ]; } }