Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2893803
PhabricatorAuthFactorResult.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
1 KB
Referenced Files
None
Subscribers
None
PhabricatorAuthFactorResult.php
View Options
<?php
final
class
PhabricatorAuthFactorResult
extends
Phobject
{
private
$isValid
=
false
;
private
$isWait
=
false
;
private
$errorMessage
;
private
$value
;
private
$issuedChallenges
=
array
(
)
;
public
function
setIsValid
(
$is_valid
)
{
$this
->
isValid
=
$is_valid
;
return
$this
;
}
public
function
getIsValid
(
)
{
return
$this
->
isValid
;
}
public
function
setIsWait
(
$is_wait
)
{
$this
->
isWait
=
$is_wait
;
return
$this
;
}
public
function
getIsWait
(
)
{
return
$this
->
isWait
;
}
public
function
setErrorMessage
(
$error_message
)
{
$this
->
errorMessage
=
$error_message
;
return
$this
;
}
public
function
getErrorMessage
(
)
{
return
$this
->
errorMessage
;
}
public
function
setValue
(
$value
)
{
$this
->
value
=
$value
;
return
$this
;
}
public
function
getValue
(
)
{
return
$this
->
value
;
}
public
function
setIssuedChallenges
(
array
$issued_challenges
)
{
assert_instances_of
(
$issued_challenges
,
'PhabricatorAuthChallenge'
)
;
$this
->
issuedChallenges
=
$issued_challenges
;
return
$this
;
}
public
function
getIssuedChallenges
(
)
{
return
$this
->
issuedChallenges
;
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sun, Jan 19, 19:05 (1 w, 3 d ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1127676
Default Alt Text
PhabricatorAuthFactorResult.php (1 KB)
Attached To
Mode
rP Phorge
Attached
Detach File
Event Timeline
Log In to Comment