mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-25 08:12:40 +01: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:
parent
5492f0fad6
commit
4e38fac47d
1 changed files with 4 additions and 4 deletions
|
@ -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++;
|
||||
|
|
Loading…
Reference in a new issue