We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7018432 commit 9cd3180Copy full SHA for 9cd3180
src/extending-phpunit.rst
@@ -174,10 +174,10 @@ definition to the extension class:
174
175
protected $config_value_2 = 0;
176
177
- public function __construct(string $value1 = '', int $value2 = 0)
+ public function __construct(string $config_value_1 = '', int $config_value_2 = 0)
178
{
179
- $this->config_value_1 = $config_1;
180
- $this->config_value_2 = $config_2;
+ $this->config_value_1 = $config_value_1;
+ $this->config_value_2 = $config_value_2;
181
}
182
183
public function executeBeforeFirstTest(): void
0 commit comments