Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/metamta/message/PhabricatorMailHeader.php
12256 views
1
<?php
2
3
final class PhabricatorMailHeader
4
extends Phobject {
5
6
private $name;
7
private $value;
8
9
public function setName($name) {
10
$this->name = $name;
11
return $this;
12
}
13
14
public function getName() {
15
return $this->name;
16
}
17
18
public function setValue($value) {
19
$this->value = $value;
20
return $this;
21
}
22
23
public function getValue() {
24
return $this->value;
25
}
26
27
}
28
29