溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

php-cs-fixer怎么使用

發(fā)布時間:2021-11-29 15:09:49 來源:億速云 閱讀:572 作者:iii 欄目:編程語言

本篇內(nèi)容介紹了“php-cs-fixer怎么使用”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!                            

開始

最近在看 PHP 之道,看到 代碼風(fēng)格指南 章節(jié)的 php-cs-fixer。

php-cs-fixer 是能夠自動幫你修證代碼風(fēng)格,不僅僅是格式化。

如果只需要代碼保存時自動格式化的,PhpStorm 可以開啟這個:

php-cs-fixer怎么使用

之前看別人發(fā)的項目,很多都是沒有格式化的,至少以上 PhpStorm 保存時自動格式化也沒有開啟吧。

接下來開始講下,開啟保存自動 php-cs-fixer 修正代碼的方法。

環(huán)境

  • PhpStorm

  • PHP 8

安裝 php-cs-fixer

這邊使用全局安裝

composer global require friendsofphp/php-cs-fixer

參見 https://cs.symfony.com/doc/installation.html

在項目根路徑下,新建文件:.php-cs-fixer.php,內(nèi)容如下:

<?phpuse PhpCsFixer\Config;use PhpCsFixer\Finder;$rules = [
    '@PHP80Migration' => true,

    'ordered_imports' => [
        'sort_algorithm' => 'alpha',
    ],
    'class_attributes_separation' => [
        'elements' => [
            'const' => 'one',
            'method' => 'one',
            'property' => 'one',
        ],
    ],];$finder = Finder::create()
    ->in([
        __DIR__.'/app',
        __DIR__.'/config',
        __DIR__.'/database',
        __DIR__.'/resources',
        __DIR__.'/routes',
        __DIR__.'/tests',
    ])
    ->name('*.php')
    ->notName('*.blade.php')
    ->ignoreDotFiles(true)
    ->ignoreVCS(true);return (new Config())
    ->setFinder($finder)
    ->setRules($rules)
    ->setRiskyAllowed(true)
    ->setUsingCache(true);

然后在 PhpStorm 設(shè)置

php-cs-fixer怎么使用

php-cs-fixer怎么使用

  • 名稱:php-cs-fixer(自己喜歡的即可)

  • 文件類型:PHP

  • 程序:php-cs-fixer

  • 參數(shù):fix $FileDir$/$FileName$  -vvv –diff

  • 要刷新的輸出路徑:$FileDir$/$FileName$

  • 工作目錄:$ProjectFileDir$

  • 自動保存編輯的文件以觸發(fā)觀察程序:去掉默認(rèn)的勾選

  • 顯示控制臺:改為始終

講下可能需要講的

  • 參數(shù):

    • 這邊使用了調(diào)試模式 -vvv,顯示的東西比較多,后面覺得煩可以去掉

    • –diff 能夠顯示修改了什么,見文章下的《開啟控制臺顯示后》

  • 要刷新的輸出路徑:這個抄來的,目前效果還要驗證

  • 自動保存編輯的文件以觸發(fā)觀察程序:就是說,只要我們輸入什么,它自動保存,不需要 command + s 進(jìn)行保存就可以觸發(fā) php-cs-fixer。個人比較習(xí)慣手動保存,請根據(jù)喜好進(jìn)行設(shè)置。

  • 顯示控制臺:配合 –diff,顯示修改了什么東西

效果舉例

php-cs-fixer怎么使用

當(dāng)我們進(jìn)行保存時,它就會自動修正代碼,在這里是修正為 PHP 7 以上的風(fēng)格。

php-cs-fixer怎么使用

在控制臺就顯示以下:

開啟控制臺顯示后

/Users/dogeow/.composer/vendor/bin/php-cs-fixer fix /Users/dogeow/PhpstormProjects/antic-api/routes/console.php -vvv --diff
Cannot load Xdebug - it was already loaded
PHP CS Fixer 3.3.2 Trinacria by Fabien Potencier and Dariusz Ruminski
Runtime: PHP 8.0.8
Loaded config default from "/Users/dogeow/PhpstormProjects/antic-api/.php-cs-fixer.php".
Using cache file ".php-cs-fixer.cache".
Paths from configuration file have been overridden by paths provided as command arguments.
F                                                                   1 / 1 (100%)
Legend: ?-unknown, I-invalid file syntax (file ignored), S-skipped (cached or empty file), .-no changes, F-fixed, E-error
   1) routes/console.php (assign_null_coalescing_to_coalesce_equal)
      ---------- begin diff ----------
--- /Users/dogeow/PhpstormProjects/antic-api/routes/console.php
+++ /Users/dogeow/PhpstormProjects/antic-api/routes/console.php
@@ -90,5 +90,5 @@
 });

 Artisan::command('test', function () {
-    $taskTag['name'] = $taskTag['name'] ?? 'url';
+    $taskTag['name'] ??= 'url';
 });

      ----------- end diff -----------


Fixed all files in 0.024 seconds, 14.000 MB memory used

進(jìn)程已結(jié)束,退出代碼為 0

當(dāng)然也可以手動在命令行執(zhí)行來批量修正整個app 目錄?;蛘呤褂?git 的,提交前自動修正等。

“php-cs-fixer怎么使用”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注億速云網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

php
AI