File: D:/HostingSpaces/SBogers10/gggg.komma.nl/vendor/phpbench/phpbench/lib/Environment/Provider/Php.php
<?php
/*
* This file is part of the PHPBench package
*
* (c) Daniel Leech <daniel@dantleech.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
*/
namespace PhpBench\Environment\Provider;
use PhpBench\Environment\Information;
/**
* Return PHP information.
*/
class Php extends AbstractRemoteProvider
{
public function name(): string
{
return 'php';
}
public function template(): string
{
return __DIR__ . '/template/php.template';
}
}