Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F97950055
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
Tue, Jan 7, 21:42
Size
1 KB
Mime Type
text/x-php
Expires
Thu, Jan 9, 21:42 (2 d)
Engine
blob
Format
Raw Data
Handle
23451513
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