Skip to content

Commit 2d7f81a

Browse files
committed
Removed unneccessary var.
1 parent 51d22dd commit 2d7f81a

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

PhpUnit/AbstractExtensionTestCase.php

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,6 @@
77

88
abstract class AbstractExtensionTestCase extends AbstractContainerBuilderTestCase
99
{
10-
/**
11-
* @var bool denotes if load() method has been invoked.
12-
*/
13-
private $loadMethodInvoked;
14-
1510
/**
1611
* Return an array of container extensions you need to be registered for each test (usually just the container
1712
* extension you are testing.
@@ -41,8 +36,6 @@ protected function setUp()
4136
{
4237
parent::setUp();
4338

44-
$this->loadMethodInvoked = false;
45-
4639
foreach ($this->getContainerExtensions() as $extension) {
4740
$this->container->registerExtension($extension);
4841
}
@@ -60,8 +53,6 @@ protected function setUp()
6053
*/
6154
protected function load(array $configurationValues = array(), $withPrependInvocation = false)
6255
{
63-
$this->loadMethodInvoked = true;
64-
6556
$configs = array($this->getMinimalConfiguration(), $configurationValues);
6657

6758
foreach ($this->container->getExtensions() as $extension) {

0 commit comments

Comments
 (0)