-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNode.php
More file actions
99 lines (85 loc) · 1.48 KB
/
Node.php
File metadata and controls
99 lines (85 loc) · 1.48 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<?php
namespace Megawilddaddy\Linode;
class Node
{
/**
* @var integer
*/
private $linodeId;
/**
* @var string
*/
private $label;
/**
* @var string[]
*/
private $ips = [];
/**
* @var string
*/
private $region;
/**
* @return int
*/
public function getLinodeId(): int
{
return $this->linodeId;
}
/**
* @param int $linodeId
*/
public function setLinodeId(int $linodeId): void
{
$this->linodeId = $linodeId;
}
/**
* @return string
*/
public function getLabel(): string
{
return $this->label;
}
/**
* @param string $label
*/
public function setLabel(string $label): void
{
$this->label = $label;
}
/**
* @return string[]
*/
public function getIps(): array
{
return $this->ips;
}
/**
* @param string[] $ips
*/
public function setIps(array $ips): void
{
$this->ips = $ips;
}
/**
* @return string
*/
public function getRegion(): string
{
return $this->region;
}
/**
* @param string $region
*/
public function setRegion(string $region): void
{
$this->region = $region;
}
public function getExternalIp()
{
foreach ($this->getIps() as $ip) {
if (substr($ip, 0, 7) != '192.168') {
return $ip;
}
}
}
}