| 1 | <?php |
||
| 2 | |||
| 3 | declare(strict_types=1); |
||
| 4 | |||
| 5 | use Rector\Config\RectorConfig; |
||
| 6 | |||
| 7 | return RectorConfig::configure() |
||
| 8 | ->withPaths([ |
||
| 9 | __DIR__.'/DependencyInjection', |
||
| 10 | __DIR__.'/Exception', |
||
| 11 | __DIR__.'/GoogleCharts', |
||
| 12 | __DIR__.'/Output', |
||
| 13 | __DIR__.'/Tests', |
||
| 14 | __DIR__.'/Twig', |
||
| 15 | ]) |
||
| 16 | ->withPhpSets(php81: true); |
||
| 17 |