From dbbdf42842490a97fd9c35e4e899192e1b06f10b Mon Sep 17 00:00:00 2001 From: Tomas Votruba Date: Mon, 15 Jan 2024 18:01:33 +0000 Subject: [PATCH] Updated Rector to commit 2ed1e94d153b5e40803275a7c1394be234d0cfae https://github.com/rectorphp/rector-src/commit/2ed1e94d153b5e40803275a7c1394be234d0cfae Restore timeout to keep compatible with formater CI runs, based on community feedback (#5468) --- src/Application/VersionResolver.php | 4 ++-- src/Config/RectorConfig.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Application/VersionResolver.php b/src/Application/VersionResolver.php index 237264cc2abe..e94ad208aea2 100644 --- a/src/Application/VersionResolver.php +++ b/src/Application/VersionResolver.php @@ -19,12 +19,12 @@ final class VersionResolver * @api * @var string */ - public const PACKAGE_VERSION = 'e17f4526a7aa8344d0bfbf61d16d125970a3d31a'; + public const PACKAGE_VERSION = '2ed1e94d153b5e40803275a7c1394be234d0cfae'; /** * @api * @var string */ - public const RELEASE_DATE = '2024-01-14 17:51:07'; + public const RELEASE_DATE = '2024-01-15 18:59:23'; /** * @var int */ diff --git a/src/Config/RectorConfig.php b/src/Config/RectorConfig.php index 289a221841ce..68cd9875a6d9 100644 --- a/src/Config/RectorConfig.php +++ b/src/Config/RectorConfig.php @@ -75,7 +75,7 @@ public function enableCollectors() : void * Defaults in sync with https://phpstan.org/config-reference#parallel-processing * as we run PHPStan as well */ - public function parallel(int $processTimeout = 60, int $maxNumberOfProcess = 32, int $jobSize = 20) : void + public function parallel(int $processTimeout = 120, int $maxNumberOfProcess = 32, int $jobSize = 20) : void { SimpleParameterProvider::setParameter(Option::PARALLEL, \true); SimpleParameterProvider::setParameter(Option::PARALLEL_JOB_TIMEOUT_IN_SECONDS, $processTimeout);