Page MenuHomec4science

PhabricatorEditEngineCommentActionGroup.php
No OneTemporary

File Metadata

Created
Sun, Jul 28, 22:27

PhabricatorEditEngineCommentActionGroup.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;
}
}

Event Timeline