Updated Rector to commit f347c7301fcfcb4cda2b61bb4b359ed01cee7070

f347c7301f Add method RectorConfigBuilder::withSkipPath() (#5626)
This commit is contained in:
Tomas Votruba 2024-02-16 19:08:11 +00:00
parent f1e807548e
commit 95d40d3a99
2 changed files with 6 additions and 2 deletions

View File

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

View File

@ -249,6 +249,10 @@ final class RectorConfigBuilder
$this->skip = \array_merge($this->skip, $skip); $this->skip = \array_merge($this->skip, $skip);
return $this; return $this;
} }
public function withSkipPath(string $skipPath) : self
{
return $this->withSkip([$skipPath]);
}
/** /**
* Include PHP files from the root directory, * Include PHP files from the root directory,
* typically ecs.php, rector.php etc. * typically ecs.php, rector.php etc.