Skip to content

Commit

Permalink
add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
timacdonald committed Jun 30, 2019
1 parent ce36ce8 commit 51da23a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/Listener.php
Expand Up @@ -12,8 +12,19 @@ class Listener implements TestListener
{
use CreatesApplication, TestListenerDefaultImplementation;

/**
* Indicates if the config has been cached before.
*
* @var bool
*/
protected $configCached = false;

/**
* Called at the start of the test suite.
*
* @param \PHPUnit\Framework\TestSuite $suite
* @return void
*/
public function startTestSuite(TestSuite $suite): void
{
if ($this->configCached) {
Expand Down

0 comments on commit 51da23a

Please sign in to comment.