R6API/Client

View on GitHub
.php_cs

Summary

Maintainability
Test Coverage
<?php

$finder = PhpCsFixer\Finder::create();
$finder ->files()
        ->in(__DIR__)
        ->exclude('vendor')
        ->notName('*.txt')
        ->name('*.php')
        ->ignoreDotFiles(true)
        ->ignoreVCS(true);

return PhpCsFixer\Config::create()
    ->setRules([
        '@PSR1' => true,
        '@PSR2' => true,
        'array_syntax' => ['syntax' => 'short'],
        'no_alternative_syntax' => true,
        'no_unused_imports' => true
    ])
    ->setFinder($finder);