Page MenuHomec4science

PhabricatorBulkEditGroup.php
No OneTemporary

File Metadata

Created
Fri, Aug 9, 20:27

PhabricatorBulkEditGroup.php

<?php
final class PhabricatorBulkEditGroup
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