7

php cs fixer 正在做:

function foobar()
{
....
}

而且我要:

function foobar() {
....
}

我看不到在我的配置.php_cs文件和https://github.com/FriendsOfPHP/PHP-CS-Fixer上将大括号保持在同一行的配置是什么。我正在使用 php-cs-fixerV2。

我的配置文件:https ://pastebin.com/v03v9Lb5

4

2 回答 2

9

您在此处描述的样式称为“真正的大括号样式”(缩写为 1TBS 或 OTBS)。

当我遇到完全相同的问题时,我终于在这里结束了,虽然@Robbie 的回答有帮助,但我仍然需要进行大量搜索。

所以我终于.php_cs在我的存储库中得到了这个:

<?php

$finder = PhpCsFixer\Finder::create()
    //->exclude('somedir')
    //->notPath('src/Symfony/Component/Translation/Tests/fixtures/resources.php'
    ->in(__DIR__)
;

return PhpCsFixer\Config::create()
    ->setRules([
        '@PSR2' => true,
        'strict_param' => false,
        'array_syntax' => ['syntax' => 'long'],
        'braces' => [
            'allow_single_line_closure' => true, 
            'position_after_functions_and_oop_constructs' => 'same'],
    ])
    ->setFinder($finder)
;

一些解释(来自(PHP-CS-Fixer README):

  • array_syntax到 long 意味着array()而不是[]. 是使用长数组还是短数组语法;默认为“长”;
  • allow_single_line_closure:是否应允许单行 lambda 表示法;默认为假;
  • position_after_functions_and_oop_constructs:左大括号应该放在经典构造(非匿名类、接口、特征、方法和非 lambda 函数)之后的“下一个”还是“同一”行;默认为“下一个”。

在IDE这样的Atom中,php-cs-fixer插件会在当前项目的根路径下搜索.php_cs配置文件。也可以指定路径。

最后但同样重要的是, Michele Locati的网站,PHP CS Fixer 配置真的很有帮助。

于 2019-02-26T10:48:49.953 回答
6

您启用了 PSR-2,这需要下一行的大括号。从文档看起来您可以设置braces.position_after_functions_and_oop_constructssame(默认为next):

  • position_after_functions_and_oop_constructs ('next', 'same'): 左大括号应该放在类构造(非匿名类、接口、特征、方法和非 lambda 函数)之后的“下一行”还是“同一行”;默认为“下一个”

myconfig.php_cs:

    'braces' => array(
        'allow_single_line_closure' => true,
        'position_after_functions_and_oop_constructs' => 'same',
    ),
于 2018-11-16T11:07:35.660 回答