for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Carpenstar\ByBitAPI\Core\Auth;
class Credentials
{
private string $host = '';
private string $apiKey = '';
private string $secret = '';
public function setHost(string $host): self
$this->host = $host;
return $this;
}
public function getHost(): string
return $this->host;
public function setApiKey(string $apiKey): self
$this->apiKey = $apiKey;
public function getApiKey(): string
return $this->apiKey;
public function setSecret(string $secret): self
$this->secret = $secret;
public function getSecret(): string
return $this->secret;