mirror of
https://we.phorge.it/source/phorge.git
synced 2025-03-01 23:19:15 +01:00
28 lines
402 B
PHP
28 lines
402 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorEditEngineCommentActionGroup
|
||
|
extends Phobject {
|
||
|
|
||
|
private $key;
|
||
|
private $label;
|
||
|
|
||
|
public function setKey($key) {
|
||
|
$this->key = $key;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getKey() {
|
||
|
return $this->key;
|
||
|
}
|
||
|
|
||
|
public function setLabel($label) {
|
||
|
$this->label = $label;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getLabel() {
|
||
|
return $this->label;
|
||
|
}
|
||
|
|
||
|
}
|