Page MenuHomePhorge

PhabricatorAuthChallengeUpdate.php
No OneTemporary

Size
760 B
Referenced Files
None
Subscribers
None

PhabricatorAuthChallengeUpdate.php

<?php
final class PhabricatorAuthChallengeUpdate
extends Phobject {
private $retry = false;
private $state;
private $markup;
public function setRetry($retry) {
$this->retry = $retry;
return $this;
}
public function getRetry() {
return $this->retry;
}
public function setState($state) {
$this->state = $state;
return $this;
}
public function getState() {
return $this->state;
}
public function setMarkup($markup) {
$this->markup = $markup;
return $this;
}
public function getMarkup() {
return $this->markup;
}
public function newContent() {
return array(
'retry' => $this->getRetry(),
'state' => $this->getState(),
'markup' => $this->getMarkup(),
);
}
}

File Metadata

Mime Type
text/x-php
Expires
Mon, May 12, 1:47 PM (1 d, 23 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
114025
Default Alt Text
PhabricatorAuthChallengeUpdate.php (760 B)

Event Timeline