mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 21:38:22 +01:00
Updated Rector to commit f347c7301fcfcb4cda2b61bb4b359ed01cee7070
f347c7301f
Add method RectorConfigBuilder::withSkipPath() (#5626)
This commit is contained in:
parent
f1e807548e
commit
95d40d3a99
@ -19,12 +19,12 @@ final class VersionResolver
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const PACKAGE_VERSION = '7cd56d864dc52f88416c47845239ad897467a003';
|
||||
public const PACKAGE_VERSION = 'f347c7301fcfcb4cda2b61bb4b359ed01cee7070';
|
||||
/**
|
||||
* @api
|
||||
* @var string
|
||||
*/
|
||||
public const RELEASE_DATE = '2024-02-16 17:35:56';
|
||||
public const RELEASE_DATE = '2024-02-16 20:05:42';
|
||||
/**
|
||||
* @var int
|
||||
*/
|
||||
|
@ -249,6 +249,10 @@ final class RectorConfigBuilder
|
||||
$this->skip = \array_merge($this->skip, $skip);
|
||||
return $this;
|
||||
}
|
||||
public function withSkipPath(string $skipPath) : self
|
||||
{
|
||||
return $this->withSkip([$skipPath]);
|
||||
}
|
||||
/**
|
||||
* Include PHP files from the root directory,
|
||||
* typically ecs.php, rector.php etc.
|
||||
|
Loading…
x
Reference in New Issue
Block a user