mirror of
https://we.phorge.it/source/phorge.git
synced 2025-02-22 11:39:03 +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:
parent
1db79044b5
commit
f83e12c943
1 changed files with 5 additions and 1 deletions
|
@ -40,7 +40,11 @@ abstract class PhabricatorObjectRemarkupRule extends PhutilRemarkupRule {
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected function getObjectHref($object, $handle, $id) {
|
protected function getObjectHref(
|
||||||
|
$object,
|
||||||
|
PhabricatorObjectHandle $handle,
|
||||||
|
$id) {
|
||||||
|
|
||||||
return $handle->getURI();
|
return $handle->getURI();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue