@recaptime-dev's working patches + fork for Phorge, a community fork of Phabricator. (Upstream dev and stable branches are at upstream/main and upstream/stable respectively.) hq.recaptime.dev/wiki/Phorge
phorge phabricator
at upstream/main 37 lines 587 B view raw
1<?php 2 3final 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}