Updated Rector to commit 7cd56d864dc52f88416c47845239ad897467a003

7cd56d864d RectorConfigBuilder: skip and rules can be called multiple times (#5623)
This commit is contained in:
Tomas Votruba 2024-02-16 16:38:11 +00:00
parent 7a0ac36084
commit f1e807548e
2 changed files with 4 additions and 4 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'd0f0e9737dc3b7e9c39ef3b6e72a9f62aa0c7d67';
public const PACKAGE_VERSION = '7cd56d864dc52f88416c47845239ad897467a003';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-02-16 17:35:27';
public const RELEASE_DATE = '2024-02-16 17:35:56';
/**
* @var int
*/

View File

@ -246,7 +246,7 @@ final class RectorConfigBuilder
*/
public function withSkip(array $skip) : self
{
$this->skip = $skip;
$this->skip = \array_merge($this->skip, $skip);
return $this;
}
/**
@ -387,7 +387,7 @@ final class RectorConfigBuilder
*/
public function withRules(array $rules) : self
{
$this->rules = $rules;
$this->rules = \array_merge($this->rules, $rules);
return $this;
}
/**