Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F116968291
PhabricatorAuthChallengeUpdate.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Tue, Jun 10, 14:51
Size
760 B
Mime Type
text/x-php
Expires
Thu, Jun 12, 14:51 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
26648540
Attached To
rPH Phabricator
PhabricatorAuthChallengeUpdate.php
View Options
<?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
(),
);
}
}
Event Timeline
Log In to Comment