Skip to content

Commit

Permalink
Improve type annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 29, 2019
1 parent 23976b2 commit 5e020a1
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Framework/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
protected $backupGlobals;

/**
* @var array
* @var string[]
*/
protected $backupGlobalsBlacklist = [];

Expand All @@ -69,7 +69,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
protected $backupStaticAttributes;

/**
* @var array
* @var array<string,array<int,string>>
*/
protected $backupStaticAttributesBlacklist = [];

Expand Down Expand Up @@ -144,7 +144,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
private $dependencyInput = [];

/**
* @var array
* @var array<string,string>
*/
private $iniSettings = [];

Expand All @@ -154,7 +154,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
private $locale = [];

/**
* @var array
* @var MockObject[]
*/
private $mockObjects = [];

Expand Down Expand Up @@ -244,7 +244,7 @@ abstract class TestCase extends Assert implements Test, SelfDescribing
private $warnings = [];

/**
* @var array
* @var string[]
*/
private $groups = [];

Expand Down

0 comments on commit 5e020a1

Please sign in to comment.