Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15416911
D19578.id46808.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19578.id46808.diff
View Options
diff --git a/src/applications/repository/storage/PhabricatorRepositoryCommit.php b/src/applications/repository/storage/PhabricatorRepositoryCommit.php
--- a/src/applications/repository/storage/PhabricatorRepositoryCommit.php
+++ b/src/applications/repository/storage/PhabricatorRepositoryCommit.php
@@ -446,7 +446,7 @@
* the migration to using identities, update this method to remove the
* fallback. See T12164 for details.
*/
- public function renderAnyCommitter(PhabricatorUser $viewer, array $handles) {
+ public function renderAnyCommitter(PhabricatorUser $viewer, $handles) {
$committer = $this->renderCommitter($viewer, $handles);
if ($committer) {
return $committer;
@@ -455,7 +455,7 @@
return $this->renderAuthor($viewer, $handles);
}
- public function renderCommitter(PhabricatorUser $viewer, array $handles) {
+ public function renderCommitter(PhabricatorUser $viewer, $handles) {
$committer_phid = $this->getCommitterDisplayPHID();
if ($committer_phid) {
return $handles[$committer_phid]->renderLink();
@@ -470,7 +470,7 @@
return null;
}
- public function renderAuthor(PhabricatorUser $viewer, array $handles) {
+ public function renderAuthor(PhabricatorUser $viewer, $handles) {
$author_phid = $this->getAuthorDisplayPHID();
if ($author_phid) {
return $handles[$author_phid]->renderLink();
diff --git a/src/applications/subscriptions/view/SubscriptionListDialogBuilder.php b/src/applications/subscriptions/view/SubscriptionListDialogBuilder.php
--- a/src/applications/subscriptions/view/SubscriptionListDialogBuilder.php
+++ b/src/applications/subscriptions/view/SubscriptionListDialogBuilder.php
@@ -58,7 +58,7 @@
->addCancelButton($object_handle->getURI(), pht('Close'));
}
- private function buildBody(PhabricatorUser $viewer, array $handles) {
+ private function buildBody(PhabricatorUser $viewer, $handles) {
$list = id(new PHUIObjectItemListView())
->setUser($viewer);
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Fri, Mar 21, 2:23 PM (4 d, 2 h ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7697023
Default Alt Text
D19578.id46808.diff (1 KB)
Attached To
Mode
D19578: Remove some array typehints for passing around
Attached
Detach File
Event Timeline
Log In to Comment