1
0
Fork 0
mirror of https://we.phorge.it/source/arcanist.git synced 2024-09-20 00:49:11 +02:00

Make properties in the PhutilUnitTestEngineTestCase class private

Summary: There's no need for these properties to be (implicitly) public.

Test Plan: N/A

Reviewers: #blessed_reviewers, epriestley

Reviewed By: #blessed_reviewers, epriestley

Subscribers: Korvin, epriestley

Differential Revision: https://secure.phabricator.com/D11276
This commit is contained in:
Joshua Spence 2015-01-08 22:43:44 +11:00
parent 5492f0fad6
commit 4e38fac47d

View file

@ -5,10 +5,10 @@
*/
final class PhutilUnitTestEngineTestCase extends ArcanistTestCase {
static $allTestsCounter = 0;
static $oneTestCounter = 0;
static $distinctWillRunTests = array();
static $distinctDidRunTests = array();
private static $allTestsCounter = 0;
private static $oneTestCounter = 0;
private static $distinctWillRunTests = array();
private static $distinctDidRunTests = array();
protected function willRunTests() {
self::$allTestsCounter++;