fonc(produit) implémente le multi-variations
This commit is contained in:
parent
1a3a431b34
commit
05baad8fdd
26 changed files with 1320 additions and 184 deletions
24
rector.php
Normal file
24
rector.php
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
<?php declare(strict_types=1);
|
||||
|
||||
use Rector\Config\RectorConfig;
|
||||
|
||||
return RectorConfig::configure()
|
||||
->withPaths([__DIR__ . '/web/app/themes/haiku-atelier-2024'])
|
||||
->withSkip([__DIR__ . '/vendor', __DIR__ . '/node_modules'])
|
||||
->withPhpSets(php85: true)
|
||||
->withCodeQualityLevel(10)
|
||||
->withCodingStyleLevel(10)
|
||||
->withDeadCodeLevel(10)
|
||||
->withTypeCoverageDocblockLevel(10)
|
||||
->withTypeCoverageLevel(10)
|
||||
->withImportNames(
|
||||
importDocBlockNames: true,
|
||||
importNames: true,
|
||||
importShortClasses: true,
|
||||
removeUnusedImports: true,
|
||||
)
|
||||
->withPreparedSets(
|
||||
carbon: true,
|
||||
instanceOf: true,
|
||||
privatization: true,
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue