Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97233261
PhabricatorPolicyException.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
Fri, Jan 3, 16:07
Size
866 B
Mime Type
text/x-php
Expires
Sun, Jan 5, 16:07 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23360609
Attached To
rPH Phabricator
PhabricatorPolicyException.php
View Options
<?php
final
class
PhabricatorPolicyException
extends
Exception
{
private
$title
;
private
$rejection
;
private
$capabilityName
;
private
$moreInfo
=
array
();
public
function
setTitle
(
$title
)
{
$this
->
title
=
$title
;
return
$this
;
}
public
function
getTitle
()
{
return
$this
->
title
;
}
public
function
setCapabilityName
(
$capability_name
)
{
$this
->
capabilityName
=
$capability_name
;
return
$this
;
}
public
function
getCapabilityName
()
{
return
$this
->
capabilityName
;
}
public
function
setRejection
(
$rejection
)
{
$this
->
rejection
=
$rejection
;
return
$this
;
}
public
function
getRejection
()
{
return
$this
->
rejection
;
}
public
function
setMoreInfo
(
array
$more_info
)
{
$this
->
moreInfo
=
$more_info
;
return
$this
;
}
public
function
getMoreInfo
()
{
return
$this
->
moreInfo
;
}
}
Event Timeline
Log In to Comment