<?php
declare(strict_types=1);
$rules = [
'@Symfony' => true,
'@PHP71Migration' => true,
'array_syntax' => ['syntax' => 'short'],
'declare_strict_types' => true,
'void_return' => true,
'yoda_style' => false,
'increment_style' => ['style' => 'post'],
];
$csFixer = PhpCsFixer\Config::create();
$csFixer->setRules($rules);
return $csFixer;