Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F104665796
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, Mar 11, 08:30
Size
760 B
Mime Type
text/x-php
Expires
Thu, Mar 13, 08:30 (2 d)
Engine
blob
Format
Raw Data
Handle
24840938
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