Updated Rector to commit c44e1e57dece206f94cd5896000750172ead0272

c44e1e57de Real fix paths The given paths do not match any files on RectorConfigBuilder (#5561)
This commit is contained in:
Tomas Votruba 2024-02-05 10:43:38 +00:00
parent 8be4b973f1
commit a5294370bd
2 changed files with 5 additions and 3 deletions

View File

@ -19,12 +19,12 @@ final class VersionResolver
* @api
* @var string
*/
public const PACKAGE_VERSION = 'c0079e3824d81ca2bd1a4b430c06acec4a5ef731';
public const PACKAGE_VERSION = 'c44e1e57dece206f94cd5896000750172ead0272';
/**
* @api
* @var string
*/
public const RELEASE_DATE = '2024-02-05 09:57:31';
public const RELEASE_DATE = '2024-02-05 17:41:23';
/**
* @var int
*/

View File

@ -140,7 +140,9 @@ final class RectorConfigBuilder
{
$uniqueSets = \array_unique($this->sets);
$rectorConfig->sets($uniqueSets);
$rectorConfig->paths($this->paths);
if ($this->paths !== []) {
$rectorConfig->paths($this->paths);
}
$rectorConfig->skip($this->skip);
$rectorConfig->rules($this->rules);
foreach ($this->rulesWithConfigurations as $rectorClass => $configurations) {