Page MenuHomePhorge

ArcanistWorkflowInformation.php
No OneTemporary

ArcanistWorkflowInformation.php

<?php
final class ArcanistWorkflowInformation
extends Phobject {
private $help;
private $synopsis;
private $examples = array();
public function setHelp($help) {
$this->help = $help;
return $this;
}
public function getHelp() {
return $this->help;
}
public function addExample($example) {
$this->examples[] = $example;
return $this;
}
public function getExamples() {
return $this->examples;
}
public function setSynopsis($synopsis) {
$this->synopsis = $synopsis;
return $this;
}
public function getSynopsis() {
return $this->synopsis;
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, Mar 24, 01:59 (1 d, 10 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114122
Default Alt Text
ArcanistWorkflowInformation.php (614 B)

Event Timeline