Skip to content
Snippets Groups Projects
Select Git revision
  • 08be1628f5f30b778436caa35df988f15993e914
  • main default protected
  • br1
3 results

rector.php

Blame
  • Mohamed Menacer's avatar
    MENACER Mohamed authored
    8646cf5c
    History
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    rector.php 240 B
    <?php
    
    declare(strict_types=1);
    
    use Rector\Config\RectorConfig;
    
    return RectorConfig::configure()
        ->withPaths([
            __DIR__ . '/src',
            __DIR__ . '/tests',
        ])
        ->withPhpSets(php83: true)
        ->withTypeCoverageLevel(0);