rector/vendor/fidry/cpu-core-counter/src/NumberOfCpuCoreNotFound.php
Tomas Votruba f010267a7c Updated Rector to commit 6b69971dfc740a58aed918782d02710e42004e9d
6b69971dfc [NodeTypeCorrector] Directly use StringType on Intersection of strings on AccessoryNonEmptyStringTypeCorrector (#5933)
2024-06-01 09:25:16 +00:00

22 lines
548 B
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 RectorPrefix202406\Fidry\CpuCoreCounter;
use RuntimeException;
final class NumberOfCpuCoreNotFound extends RuntimeException
{
public static function create() : self
{
return new self('Could not find the number of CPU cores available.');
}
}