forked from php-censor/php-censor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEnvironment.php
More file actions
123 lines (103 loc) · 2.14 KB
/
Copy pathEnvironment.php
File metadata and controls
123 lines (103 loc) · 2.14 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<?php
declare(strict_types=1);
namespace PHPCensor\Model\Base;
use PHPCensor\Exception\InvalidArgumentException;
use PHPCensor\Model;
class Environment extends Model
{
/**
* @var array
*/
protected $data = [
'id' => null,
'project_id' => null,
'name' => null,
'branches' => null,
];
/**
* @return int
*/
public function getId()
{
return (int)$this->data['id'];
}
/**
* @param int $value
*
* @return bool
*/
public function setId(int $value)
{
if ($this->data['id'] === $value) {
return false;
}
$this->data['id'] = $value;
return $this->setModified('id');
}
/**
* @return int
*/
public function getProjectId()
{
return (int)$this->data['project_id'];
}
/**
* @param int $value
*
* @return bool
*/
public function setProjectId(int $value)
{
if ($this->data['project_id'] === $value) {
return false;
}
$this->data['project_id'] = $value;
return $this->setModified('project_id');
}
/**
* @return string
*/
public function getName()
{
return $this->data['name'];
}
/**
* @param string $value
*
* @return bool
*/
public function setName(string $value)
{
if ($this->data['name'] === $value) {
return false;
}
$this->data['name'] = $value;
return $this->setModified('name');
}
/**
* @return array
*/
public function getBranches()
{
return array_filter(
array_map(
'trim',
explode("\n", $this->data['branches'])
)
);
}
/**
* @param array $value
*
* @return bool
*/
public function setBranches(array $value)
{
$branches = implode("\n", $value);
if ($this->data['branches'] === $branches) {
return false;
}
$this->data['branches'] = $branches;
return $this->setModified('branches');
}
}