Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F99241925
AphrontRoutingResult.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
Wed, Jan 22, 17:17
Size
1 KB
Mime Type
text/x-php
Expires
Fri, Jan 24, 17:17 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
23718731
Attached To
rPH Phabricator
AphrontRoutingResult.php
View Options
<?php
/**
* Details about a routing map match for a path.
*
* @param info Result Information
*/
final
class
AphrontRoutingResult
extends
Phobject
{
private
$site
;
private
$application
;
private
$controller
;
private
$uriData
;
/* -( Result Information )------------------------------------------------- */
public
function
setSite
(
AphrontSite
$site
)
{
$this
->
site
=
$site
;
return
$this
;
}
public
function
getSite
()
{
return
$this
->
site
;
}
public
function
setApplication
(
PhabricatorApplication
$application
)
{
$this
->
application
=
$application
;
return
$this
;
}
public
function
getApplication
()
{
return
$this
->
application
;
}
public
function
setController
(
AphrontController
$controller
)
{
$this
->
controller
=
$controller
;
return
$this
;
}
public
function
getController
()
{
return
$this
->
controller
;
}
public
function
setURIData
(
array
$uri_data
)
{
$this
->
uriData
=
$uri_data
;
return
$this
;
}
public
function
getURIData
()
{
return
$this
->
uriData
;
}
}
Event Timeline
Log In to Comment