rector/vendor/fidry/cpu-core-counter/src/Finder/DummyCpuCoreFinder.php
2022-12-16 14:30:13 +00:00

45 lines
1.1 KiB
PHP

<?php
/*
* This file is part of the Fidry CPUCounter Config package.
*
* (c) Théo FIDRY <theo.fidry@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare (strict_types=1);
namespace RectorPrefix202212\Fidry\CpuCoreCounter\Finder;
use function sprintf;
/**
* This finder returns whatever value you gave to it. This is useful for testing
* or as a fallback to avoid to catch the NumberOfCpuCoreNotFound exception.
*/
final class DummyCpuCoreFinder implements CpuCoreFinder
{
/**
* @var positive-int
*/
private $count;
public function diagnose() : string
{
return sprintf('Will return "%d".', $this->count);
}
/**
* @param positive-int $count
*/
public function __construct(int $count)
{
$this->count = $count;
}
public function find() : ?int
{
return $this->count;
}
public function toString() : string
{
return sprintf('DummyCpuCoreFinder(value=%d)', $this->count);
}
}