Page MenuHomePhorge

ArcanistHardpointFutureList.php
No OneTemporary

ArcanistHardpointFutureList.php

<?php
final class ArcanistHardpointFutureList
extends Phobject {
private $futures;
private $sendResult;
public static function newFromFutures(array $futures) {
assert_instances_of($futures, 'Future');
$object = new self();
$object->futures = $futures;
return $object;
}
public function getFutures() {
return $this->futures;
}
public function setSendResult($send_result) {
$this->sendResult = $send_result;
return $this;
}
public function getSendResult() {
return $this->sendResult;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 03:09 (1 d, 20 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114703
Default Alt Text
ArcanistHardpointFutureList.php (549 B)

Event Timeline