mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 22:08:00 +01:00
Updated Rector to commit a6ace939a0cbccd31623d3e18677ea8791e69aab
a6ace939a0
[Configuration] Use array_merge() on RectorCnofigBuilder::withSets() (#5507)
This commit is contained in:
parent
9204913593
commit
e41705aa94
@ -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
|
||||
*/
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user