text .php_cs.dist

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text .php_cs.dist相关的知识,希望对你有一定的参考价值。

<?php

// https://github.com/FriendsOfPHP/PHP-CS-Fixer
//
// $ ./php-cs-fixer --diff --dry-run -v fix app/Models/UserSocialite.php

$finder = PhpCsFixer\Finder::create()
    ->notPath('bootstrap/cache')
    ->notPath('storage')
    ->notPath('vendor')
    // ->in(__DIR__ . '/app/Models')
    ->name('*.php')
    ->name('AbstractAclResourceModel.php')
    ->notName('*.blade.php')
    ->ignoreDotFiles(true)
    ->ignoreVCS(true)
;

return PhpCsFixer\Config::create()
    ->setRules([
        '@PSR2' => true,
        '@Symfony' => true,
        'array_syntax' => ['syntax' => 'short'],
        'linebreak_after_opening_tag' => true,
        'not_operator_with_successor_space' => false,
        'ordered_imports' => true,

        'phpdoc_summary' => false,
        'phpdoc_order' => false,
        'phpdoc_separation' => false,
        'phpdoc_no_package' => false,
        'phpdoc_no_alias_tag' => [],

        'concat_space' => ['spacing' => 'one'],

        // phpdoc_no_alias_tag,
        // phpdoc_summary,
        // phpdoc_separation,
        // no_unused_imports,
        // phpdoc_align

        'return_type_declaration' => ['space_before' => 'one'],
        'phpdoc_align' => false,
        'no_trailing_comma_in_singleline_array' => false, // Однострочные массивы PHP не должны иметь запятую.

        'binary_operator_spaces' => [
            // 'align_double_arrow' => false,

            'default' => 'single_space',
            // 'default' => 'align_single_space_minimal',
            // 'default' => 'align_single_space',
        ],
    ])
    ->setFinder($finder)
;

以上是关于text .php_cs.dist的主要内容,如果未能解决你的问题,请参考以下文章

<!-- text --> 和 /* text */ 注释有啥区别?

VB中 如何复制Text1.text的字体到剪贴板? 如何剪切?

VB 加减乘除

text-decoration:[ text-decoration-line ] || [ text-decoration-style ] || [ text-decoration-color ]

.text 和 .get_text() 之间的区别

javascript或css:如何隐藏标签内的文本中的任何数字,后跟点前缀“1.text”,“2.text”...“30.text”