-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathClient.php
More file actions
71 lines (59 loc) · 1.3 KB
/
Copy pathClient.php
File metadata and controls
71 lines (59 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
namespace PHPBitLaunch;
use PHPBitLaunch\Services\Account;
use PHPBitLaunch\Services\CreateOptions;
use PHPBitLaunch\Services\Server;
use PHPBitLaunch\Services\SSHKey;
use PHPBitLaunch\Services\Transaction;
class Client
{
protected const BASE_URI = 'https://app.bitlaunch.io/api/';
protected const VERSION = '1.0.1';
protected const USER_AGENT = 'phpbitlaunch/' . self::VERSION;
/**
* @var string
*/
protected $apiKey;
/**
* @param string $token A BitLaunch API Key
*/
public function __construct(string $token = '')
{
$this->apiKey = $token;
}
/**
* @return Account Service
*/
public function account(): Account
{
return new Account($this);
}
/**
* @return CreateOptions Service
*/
public function createOptions(): CreateOptions
{
return new CreateOptions($this);
}
/**
* @return SSHKey Service
*/
public function sshKey(): SSHKey
{
return new SSHKey($this);
}
/**
* @return Transaction Service
*/
public function transaction(): Transaction
{
return new Transaction($this);
}
/**
* @return Server Service
*/
public function server(): Server
{
return new Server($this);
}
}