π Sid Gifari File Manager Pro
v8.0.5 | 2026-06-17 08:50:56 | PHP 8.1.34
π
/ (Root)
/
opt
/
cpanel
/
ea-wappspector
/
vendor
/
rector
/
rector
/
vendor
/
fidry
/
cpu-core-counter
/
src
/
Finder
π /opt/cpanel/ea-wappspector/vendor/rector/rector/vendor/fidry/cpu-core-counter/src/Finder
π Refresh
βοΈ
Editing: DummyCpuCoreFinder.php
Read Only
<?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 RectorPrefix202411\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); } }
πΎ Save Changes
β Cancel