Path: blob/master/src/applications/auth/view/PhabricatorAuthChallengeUpdate.php
12256 views
<?php12final class PhabricatorAuthChallengeUpdate3extends Phobject {45private $retry = false;6private $state;7private $markup;89public function setRetry($retry) {10$this->retry = $retry;11return $this;12}1314public function getRetry() {15return $this->retry;16}1718public function setState($state) {19$this->state = $state;20return $this;21}2223public function getState() {24return $this->state;25}2627public function setMarkup($markup) {28$this->markup = $markup;29return $this;30}3132public function getMarkup() {33return $this->markup;34}3536public function newContent() {37return array(38'retry' => $this->getRetry(),39'state' => $this->getState(),40'markup' => $this->getMarkup(),41);42}43}444546