mirror of
				https://github.com/furyfire/trueskill.git
				synced 2025-11-04 02:02:29 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			566 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
declare(strict_types=1);
 | 
						|
 | 
						|
use Rector\Config\RectorConfig;
 | 
						|
use Rector\CodeQuality\Rector\ClassMethod\LocallyCalledStaticMethodToNonStaticRector;
 | 
						|
 | 
						|
return RectorConfig::configure()
 | 
						|
    ->withPaths([
 | 
						|
        __DIR__ . '/benchmark',
 | 
						|
        __DIR__ . '/examples',
 | 
						|
        __DIR__ . '/src',
 | 
						|
        __DIR__ . '/tests',
 | 
						|
    ])
 | 
						|
    // uncomment to reach your current PHP version
 | 
						|
    ->withPhpSets()
 | 
						|
    ->withPreparedSets(deadCode: true, codeQuality: true, typeDeclarations : true)
 | 
						|
    ->withSkip([
 | 
						|
        LocallyCalledStaticMethodToNonStaticRector::class,
 | 
						|
    ]);;
 |