Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/phabricator
Path: blob/master/src/applications/nuance/command/NuanceItemCommandSpec.php
12256 views
1
<?php
2
3
final class NuanceItemCommandSpec
4
extends Phobject {
5
6
private $commandKey;
7
private $name;
8
private $icon;
9
10
public function setCommandKey($command_key) {
11
$this->commandKey = $command_key;
12
return $this;
13
}
14
15
public function getCommandKey() {
16
return $this->commandKey;
17
}
18
19
public function setName($name) {
20
$this->name = $name;
21
return $this;
22
}
23
24
public function getName() {
25
return $this->name;
26
}
27
28
public function setIcon($icon) {
29
$this->icon = $icon;
30
return $this;
31
}
32
33
public function getIcon() {
34
return $this->icon;
35
}
36
37
}
38
39