HEX
Server: LiteSpeed
System: Linux s1049.use1.mysecurecloudhost.com 4.18.0-477.27.2.lve.el8.x86_64 #1 SMP Wed Oct 11 12:32:56 UTC 2023 x86_64
User: xedaptot (3356)
PHP: 8.3.31
Disabled: NONE
Upload Files
File: /home/xedaptot/360.naniguide.com/backend/vendor/2checkout-php-sdk/Examples/Common/ExampleConfig.php
<?php

namespace Tco\Examples\Common;

class ExampleConfig {
    private $sellerId = '';
    private $secretKey = '';
    private $secretWord = '';
    private $secureSSL = 0;
    private $jwtExpireTime = 20; //minutes
    protected $config = array();

    public function __construct() {
        $this->config = array(
            'sellerId'          => $this->sellerId(),
            'secretKey'         => $this->secretKey(),
            'curlVerifySsl'     => $this->secureSSL(),
            'buyLinkSecretWord' => $this->secretWord(),
            'jwtExpireTime'     => $this->jwtExpireTime
    );
    }

    public function config() {
        return $this->config;
    }

    public function sellerId() {
        return $this->sellerId;
    }

    public function secretKey() {
        return $this->secretKey;
    }

    public function secretWord() {
        return $this->secretWord;
    }

    public function secureSSL() {
        return $this->secureSSL;
    }
}