1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2024-12-23 22:10:55 +01:00

Add return type to conduit.query

Summary: Fixes T6950. Adds the return type of Conduit API methods to the `conduit.query` call.

Test Plan: Called `echo '{}' | arc call-conduit conduit.query` and verified that the return types were present in the response.

Reviewers: epriestley, #blessed_reviewers

Reviewed By: epriestley, #blessed_reviewers

Subscribers: Korvin, epriestley

Maniphest Tasks: T6950

Differential Revision: https://secure.phabricator.com/D11466
This commit is contained in:
Joshua Spence 2015-01-23 07:16:15 +11:00
parent c429e4a222
commit 1258ed348b

View file

@ -32,6 +32,7 @@ final class ConduitQueryConduitAPIMethod extends ConduitAPIMethod {
foreach ($classes as $class) {
$names_to_params[$class->getAPIMethodName()] = array(
'params' => $class->defineParamTypes(),
'return' => $class->defineReturnType(),
);
}