Php cs fixer новая строка после скобки массива - PullRequest
1 голос
/ 27 сентября 2019

У нас есть простой массив, подобный этому

return ['env' => 'release',
'mode' => 'normal',
'theme' => 'basic',
'redis' => require __DIR__.'/redis.php',
];

Как добавить новую строку после (пустая строка) после примера фигурной скобки

return [ // new line after brace
    'env' => 'release',
    'mode' => 'normal',
    'theme' => 'basic',
    'redis' => require __DIR__ . '/redis.php',
];

Я попробовал эту конфигурацию, но не сработал

<?php

$finder = PhpCsFixer\Finder::create()
    ->name('*.php.j2')
    ->in(__DIR__ . '/test');

return PhpCsFixer\Config::create()
    ->setRules([
        '@Symfony' => true,
        'array_syntax' => ['syntax' => 'short'],
        'braces' => [
            'position_after_anonymous_constructs' => 'next', // this  for functions
            'position_after_control_structures' => 'next' // this for if-else structures
        ]
    ])
    ->setFinder($finder);
...