Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F107206407
ConduitQueryConduitAPIMethod.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
Sat, Apr 5, 23:06
Size
926 B
Mime Type
text/x-php
Expires
Mon, Apr 7, 23:06 (2 d)
Engine
blob
Format
Raw Data
Handle
25374970
Attached To
rPH Phabricator
ConduitQueryConduitAPIMethod.php
View Options
<?php
final
class
ConduitQueryConduitAPIMethod
extends
ConduitAPIMethod
{
public
function
getAPIMethodName
()
{
return
'conduit.query'
;
}
public
function
getMethodDescription
()
{
return
'Returns the parameters of the Conduit methods.'
;
}
public
function
defineParamTypes
()
{
return
array
();
}
public
function
defineReturnType
()
{
return
'dict<dict>'
;
}
public
function
defineErrorTypes
()
{
return
array
();
}
protected
function
execute
(
ConduitAPIRequest
$request
)
{
$classes
=
id
(
new
PhutilSymbolLoader
())
->
setAncestorClass
(
'ConduitAPIMethod'
)
->
setType
(
'class'
)
->
loadObjects
();
$names_to_params
=
array
();
foreach
(
$classes
as
$class
)
{
$names_to_params
[
$class
->
getAPIMethodName
()]
=
array
(
'params'
=>
$class
->
defineParamTypes
(),
'return'
=>
$class
->
defineReturnType
(),
);
}
return
$names_to_params
;
}
}
Event Timeline
Log In to Comment