%PDF- %PDF-
| Direktori : /home/graphicd/www/vebto/vendor/meilisearch/meilisearch-php/ |
| Current File : /home/graphicd/www/vebto/vendor/meilisearch/meilisearch-php/.php-cs-fixer.dist.php |
<?php
declare(strict_types=1);
$finder = PhpCsFixer\Finder::create()
->in(__DIR__.DIRECTORY_SEPARATOR.'src')
->in(__DIR__.DIRECTORY_SEPARATOR.'tests')
->append(['.php_cs.dist']);
$rules = [
'@Symfony' => true,
'declare_strict_types' => true,
'void_return' => true,
'native_function_invocation' => ['include' => ['@compiler_optimized'], 'scope' => 'namespaced'],
];
$config = new PhpCsFixer\Config();
return $config
->setRules($rules)
->setRiskyAllowed(true)
->setFinder($finder);