Skip to content

Commit 7437a4a

Browse files
Merge branch '7.5' into 8.5
2 parents 0034ad9 + 9cd3180 commit 7437a4a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/extending-phpunit.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -174,10 +174,10 @@ definition to the extension class:
174174
175175
protected $config_value_2 = 0;
176176
177-
public function __construct(string $value1 = '', int $value2 = 0)
177+
public function __construct(string $config_value_1 = '', int $config_value_2 = 0)
178178
{
179-
$this->config_value_1 = $config_1;
180-
$this->config_value_2 = $config_2;
179+
$this->config_value_1 = $config_value_1;
180+
$this->config_value_2 = $config_value_2;
181181
}
182182
183183
public function executeBeforeFirstTest(): void

0 commit comments

Comments
 (0)