Skip to content

Commit 495cb7a

Browse files
author
Joshua Spence
committedNov 2, 2015
Mark PhabricatorPHIDType::getPHIDTypeApplicationClass() as abstract
Summary: Fixes T9625. As explained in a `TODO` comment, seems reasonable enough. Test Plan: Unit tests. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, hach-que Maniphest Tasks: T9625 Differential Revision: https://secure.phabricator.com/D14068
1 parent 09d4ea8 commit 495cb7a

File tree

84 files changed

+347
-76
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+347
-76
lines changed
 

‎src/applications/almanac/phid/AlmanacBindingPHIDType.php

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ public function newObject() {
1212
return new AlmanacBinding();
1313
}
1414

15+
public function getPHIDTypeApplicationClass() {
16+
return 'PhabricatorAlmanacApplication';
17+
}
18+
1519
protected function buildQueryForObjects(
1620
PhabricatorObjectQuery $query,
1721
array $phids) {

‎src/applications/almanac/phid/AlmanacDevicePHIDType.php

+4
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ public function newObject() {
1212
return new AlmanacDevice();
1313
}
1414

15+
public function getPHIDTypeApplicationClass() {
16+
return 'PhabricatorAlmanacApplication';
17+
}
18+
1519
protected function buildQueryForObjects(
1620
PhabricatorObjectQuery $query,
1721
array $phids) {

0 commit comments

Comments
 (0)
Failed to load comments.