mirror of
				https://github.com/elyby/accounts.git
				synced 2025-05-31 14:11:46 +05:30 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			471 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
$finder = \PhpCsFixer\Finder::create()
 | 
						|
    ->in(__DIR__)
 | 
						|
    ->exclude('data')
 | 
						|
    ->exclude('docker')
 | 
						|
    ->exclude('frontend')
 | 
						|
    ->notPath('common/emails/views')
 | 
						|
    ->notPath('common/mail/layouts')
 | 
						|
    ->notPath('/.*\/runtime/')
 | 
						|
    ->notPath('autocompletion.php')
 | 
						|
    ->notPath('/.*\/tests\/_output/')
 | 
						|
    ->notPath('/.*\/tests\/_support\/_generated/')
 | 
						|
    ->name('yii');
 | 
						|
 | 
						|
return \Ely\CS\Config::create([
 | 
						|
    'self_accessor' => false,
 | 
						|
])->setFinder($finder);
 |