Fix rector

This commit is contained in:
Philipp Holzer 2021-05-02 23:56:23 +02:00
parent cff3a5186c
commit 7fe99c315b
No known key found for this signature in database
GPG Key ID: 9A28B7D4FF5667BD
1 changed files with 2 additions and 1 deletions

View File

@ -18,11 +18,11 @@ return static function (ContainerConfigurator $containerConfigurator): void {
__DIR__ . '/static',
__DIR__ . '/bin',
__DIR__ . '/view',
__DIR__
]);
$parameters->set(Option::SKIP, [
__DIR__ . '/view/asset',
__DIR__ . '/vendor',
]);
// here we can define, what sets of rules will be applied
@ -34,4 +34,5 @@ return static function (ContainerConfigurator $containerConfigurator): void {
// is your PHP version different from the one your refactor to? [default: your PHP version]
$parameters->set(Option::PHP_VERSION_FEATURES, '7.0');
$parameters->set(Option::ENABLE_CACHE, true);
};