/home/techb158/ileadtechnology.com/vendor/phpunit/phpunit/src/Util
Edit: /home/techb158/ileadtechnology.com/vendor/phpunit/phpunit/src/Util/ConfigurationGenerator.php (2103B)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace PHPUnit\Util;
use function str_replace;
/**
* @internal This class is not covered by the backward compatibility promise for PHPUnit
*/
final class ConfigurationGenerator
{
/**
* @var string
*/
private const TEMPLATE = <<<'EOT'
{tests_directory}
{src_directory}
EOT;
public function generateDefaultConfiguration(string $phpunitVersion, string $bootstrapScript, string $testsDirectory, string $srcDirectory, string $cacheDirectory): string
{
return str_replace(
[
'{phpunit_version}',
'{bootstrap_script}',
'{tests_directory}',
'{src_directory}',
'{cache_directory}',
],
[
$phpunitVersion,
$bootstrapScript,
$testsDirectory,
$srcDirectory,
$cacheDirectory,
],
self::TEMPLATE
);
}
}