Page MenuHomePhorge

PhabricatorFactSimpleSpec.php
No OneTemporary

Size
612 B
Referenced Files
None
Subscribers
None

PhabricatorFactSimpleSpec.php

<?php
final class PhabricatorFactSimpleSpec extends PhabricatorFactSpec {
private $type;
private $name;
private $unit;
public function __construct($type) {
$this->type = $type;
}
public function getType() {
return $this->type;
}
public function setUnit($unit) {
$this->unit = $unit;
return $this;
}
public function getUnit() {
return $this->unit;
}
public function setName($name) {
$this->name = $name;
return $this;
}
public function getName() {
if ($this->name !== null) {
return $this->name;
}
return parent::getName();
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 5, 11:45 PM (2 d)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
78597
Default Alt Text
PhabricatorFactSimpleSpec.php (612 B)

Event Timeline