1
0
Fork 0
mirror of https://we.phorge.it/source/phorge.git synced 2025-02-20 10:48:40 +01:00

Add missing typehint

Summary: Ref D12694.

Test Plan: no more error in the logs

Reviewers: epriestley, joshuaspence

Reviewed By: joshuaspence

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D12709
This commit is contained in:
Bob Trahan 2015-05-04 15:13:40 -07:00
parent 1db79044b5
commit f83e12c943

View file

@ -40,7 +40,11 @@ abstract class PhabricatorObjectRemarkupRule extends PhutilRemarkupRule {
return $result;
}
protected function getObjectHref($object, $handle, $id) {
protected function getObjectHref(
$object,
PhabricatorObjectHandle $handle,
$id) {
return $handle->getURI();
}