From d10e25098c675f10aa1ad80dc17ec70f0f4241b5 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Thu, 24 Jul 2014 08:14:45 +1000 Subject: [PATCH] Fix Phortune application name Summary: These files were added in D10001, which was submitted before (but landed after) D9982 had landed. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers, chad Reviewed By: #blessed_reviewers, chad Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D10033 --- src/applications/phortune/query/PhortuneCartQuery.php | 2 +- src/applications/phortune/query/PhortuneChargeQuery.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/applications/phortune/query/PhortuneCartQuery.php b/src/applications/phortune/query/PhortuneCartQuery.php index 5483f5ecc7..c4133c693e 100644 --- a/src/applications/phortune/query/PhortuneCartQuery.php +++ b/src/applications/phortune/query/PhortuneCartQuery.php @@ -97,7 +97,7 @@ final class PhortuneCartQuery } public function getQueryApplicationClass() { - return 'PhabricatorApplicationPhortune'; + return 'PhabricatorPhortuneApplication'; } } diff --git a/src/applications/phortune/query/PhortuneChargeQuery.php b/src/applications/phortune/query/PhortuneChargeQuery.php index 04ef7eae8b..17a3642e0e 100644 --- a/src/applications/phortune/query/PhortuneChargeQuery.php +++ b/src/applications/phortune/query/PhortuneChargeQuery.php @@ -100,7 +100,7 @@ final class PhortuneChargeQuery } public function getQueryApplicationClass() { - return 'PhabricatorApplicationPhortune'; + return 'PhabricatorPhortuneApplication'; } }