Files
HRM-System/vendor/coingate/coingate-php/tests/TestCase.php
2026-04-13 08:19:53 +08:00

14 lines
266 B
PHP

<?php
namespace CoinGate;
class TestCase extends \PHPUnit\Framework\TestCase
{
public const APIKEY = '-Lj8CYksfaJw_VwoCPMEPUKiLDnFFGKz7szNKXYp';
protected function createSandboxClient(): Client
{
return new Client(self::APIKEY, true);
}
}