From 36b760cd8a13c67c37fee5bf0cd492e82fdc8262 Mon Sep 17 00:00:00 2001 From: Joshua Spence Date: Wed, 14 Jan 2015 07:02:16 +1100 Subject: [PATCH] Fix method visiblity for `PhabricatorFileTestCase::getPhabricatorTestCaseConfiguration` Summary: Ref T6822. Test Plan: `grep` for `->getPhabricatorTestCaseConfiguration(`. Reviewers: #blessed_reviewers, epriestley Reviewed By: #blessed_reviewers, epriestley Subscribers: Korvin, epriestley Maniphest Tasks: T6822 Differential Revision: https://secure.phabricator.com/D11366 --- .../files/storage/__tests__/PhabricatorFileTestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php b/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php index b8556c0961..d4d5afcd71 100644 --- a/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php +++ b/src/applications/files/storage/__tests__/PhabricatorFileTestCase.php @@ -2,7 +2,7 @@ final class PhabricatorFileTestCase extends PhabricatorTestCase { - public function getPhabricatorTestCaseConfiguration() { + protected function getPhabricatorTestCaseConfiguration() { return array( self::PHABRICATOR_TESTCONFIG_BUILD_STORAGE_FIXTURES => true, );