Skip to content

Commit

Permalink
Updated Rector to commit c44e1e57dece206f94cd5896000750172ead0272
Browse files Browse the repository at this point in the history
rectorphp/rector-src@c44e1e5 Real fix paths The given paths do not match any files on RectorConfigBuilder (#5561)
  • Loading branch information
TomasVotruba committed Feb 5, 2024
1 parent 8be4b97 commit a529437
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Application/VersionResolver.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
4 changes: 3 additions & 1 deletion src/Configuration/RectorConfigBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,9 @@ public function __invoke(RectorConfig $rectorConfig) : void
{
$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) {
Expand Down

0 comments on commit a529437

Please sign in to comment.