* * 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 { return str_replace( [ '{phpunit_version}', '{bootstrap_script}', '{tests_directory}', '{src_directory}', ], [ $phpunitVersion, $bootstrapScript, $testsDirectory, $srcDirectory, ], self::TEMPLATE ); } }