mirror of
https://we.phorge.it/source/phorge.git
synced 2024-11-15 19:32:40 +01:00
38 lines
643 B
PHP
38 lines
643 B
PHP
|
<?php
|
||
|
|
||
|
final class PhabricatorSearchResultBucketGroup
|
||
|
extends Phobject {
|
||
|
|
||
|
private $name;
|
||
|
private $noDataString;
|
||
|
private $objects;
|
||
|
|
||
|
public function setNoDataString($no_data_string) {
|
||
|
$this->noDataString = $no_data_string;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getNoDataString() {
|
||
|
return $this->noDataString;
|
||
|
}
|
||
|
|
||
|
public function setName($name) {
|
||
|
$this->name = $name;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getName() {
|
||
|
return $this->name;
|
||
|
}
|
||
|
|
||
|
public function setObjects(array $objects) {
|
||
|
$this->objects = $objects;
|
||
|
return $this;
|
||
|
}
|
||
|
|
||
|
public function getObjects() {
|
||
|
return $this->objects;
|
||
|
}
|
||
|
|
||
|
}
|