Updated Rector to commit a6ace939a0cbccd31623d3e18677ea8791e69aab

a6ace939a0 [Configuration] Use array_merge() on RectorCnofigBuilder::withSets() (#5507)
This commit is contained in:
Tomas Votruba 2024-01-26 22:36:43 +00:00
parent 9204913593
commit e41705aa94
2 changed files with 3 additions and 3 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'a69e1ff013720727f052437d051ca5ab2c11b89e';
public const PACKAGE_VERSION = 'a6ace939a0cbccd31623d3e18677ea8791e69aab';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-01-26 21:40:53';
public const RELEASE_DATE = '2024-01-27 05:34:41';
/**
* @var int
*/

View File

@ -210,7 +210,7 @@ final class RectorConfigBuilder
*/
public function withSets(array $sets) : self
{
$this->sets = $sets;
$this->sets = \array_merge($this->sets, $sets);
return $this;
}
public function withPreparedSets(bool $deadCode = \false, bool $codeQuality = \false, bool $codingStyle = \false, bool $typeDeclarations = \false, bool $privatization = \false, bool $naming = \false, bool $instanceOf = \false, bool $earlyReturn = \false, bool $strictBooleans = \false) : self