国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

Laravel學習筆記之Code Style

Sourcelink / 1318人閱讀

摘要:在合作開發時需要統一下,如給寫時一些如得按照字母順序來寫,等等。推薦一個,該是作者寫的,質量有保證。每一個的定義可以參考的主頁。

在合作開發時需要統一下code style,如給method寫annotation時一些tag如@params ,@throw,@return得按照字母順序來寫,等等。推薦一個package:friendsofphp/php-cs-fixer,該package是Symfony作者寫的,質量有保證。
安裝下該package:

composer require friendsofphp/php-cs-fixer --dev

然后項目根目錄創建一個可執行文件如.cs文件:

#!/bin/bash

vendor/bin/php-cs-fixer fix

以后在項目根目錄只需執行./cs就可以自動修復不復合規定code style的代碼,code rules的定義在該package packgist的網站上有說明。vendor/bin/php-cs-fixer fix會讀取.php_cs文件返回的code rules,所以還得定義哪些code rules,同樣在項目根目錄中新建文件.php_cs,然后加上code rules,如:

exclude("bootstrap")
            ->exclude("database")
            ->exclude("public")
            ->exclude("resources")
            ->exclude("storage")
            ->exclude("vendor")
            ->notPath(".phpstorm.meta.php")
            ->notPath("_ide_helper.php")
            ->notPath("server.php")
            ->in(__DIR__);

return SymfonyCSConfig::create()
    ->level(SymfonyCSFixerInterface::PSR2_LEVEL)
    ->fixers([
    // Use all symfony fixers but the following "-"."fixer".

        // Exclude psr-0
        "-psr0",

        // Concatenation should be used without spaces.
        "-concat_without_spaces",

        // A return statement wishing to return nothing should be simply "return".
        "-empty_return",

        // Remove useless semicolon statements.
        "-no_empty_comment",

        // Binary operators should be surrounded by at least one space.
        "-operators_spaces",

        // Phpdocs annotation descriptions should not end with a full stop.
        "-phpdoc_annotation_without_dot",

        // @return void and @return null annotations should be omitted from phpdocs.
        "-phpdoc_no_empty_return",

        // @package and @subpackage annotations should be omitted from phpdocs.
        "-phpdoc_no_package",

        // All items of the @param, @throws, @return, @var, and @type phpdoc tags must be aligned vertically.
        "-phpdoc_params",

        // Annotations in phpdocs should be grouped together so that annotations of the same type immediately follow each other,
        // and annotations of a different type are separated by a single blank line.
        "-phpdoc_separation",

        // Phpdocs short descriptions should end in either a full stop, exclamation mark, or question mark.
        "-phpdoc_short_description",

        // Docblocks should only be used on structural elements.
        "-phpdoc_to_comment",

        // Pre incrementation/decrementation should be used if possible.
        "-pre_increment",

        // Unalign double arrow symbols.
        "-unalign_double_arrow",

        // Unalign equals symbols.
        "-unalign_equals",

    // Use all the following fixers.
        // Align double arrow symbols in consecutive lines.
        "align_double_arrow",

        // Align equals symbols in consecutive lines.
        "align_equals",

        // Concatenation should be used with at least one whitespace around.
        "concat_with_spaces",

        // Replace deprecated ereg regular expression functions with preg.
        "ereg_to_preg",

        // Add, replace or remove header comment.
        // "header_comment",

        // Multi-line whitespace before closing semicolon are prohibited.
        "multiline_spaces_before_semicolon",

        // Ensure there is no code on the same line as the PHP open tag.
        "newline_after_open_tag",

        // There should not be an empty return statement at the end of a function.
        "no_useless_return",

        // Ordering use statements.
        "ordered_use",

        // Convert PHP4-style constructors to __construct.
        "php4_constructor",

        // PHPUnit assertion method calls like "->assertSame(true, $foo)" should be written with dedicated method like "->assertTrue($foo)".
        "php_unit_construct",

        // PHPUnit methods like "assertSame" should be used instead of "assertEquals".
        "php_unit_strict",

        // Annotations in phpdocs should be ordered so that param annotations come first,
        // then throws annotations, then return annotations.
        "phpdoc_order",

        // PHP arrays should use the PHP 5.4 short-syntax.
        "short_array_syntax",

        // Replace short-echo finder($finder)
    ->setUsingCache(true);

code rules可以添加或刪除,需要團隊統一,一般至少盡量符合PSR-2的大部分標準。每一個code rule的定義可以參考package packgist的主頁。

這樣,團隊里以后每次push code前先./cs下:

當然,還應當在PHPStorm IDE里的Preference->Editor->Code Style->PHP里也設置同樣的code rules,然后導出一個xml文件,方便在團隊里共享并導入到每個開發者的PHPStorm,這樣保證團隊的每一個Code Style保持相同。

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://specialneedsforspecialkids.com/yun/22113.html

相關文章

  • Laravel學習筆記一-開發環境搭建

    摘要:配置需要一個來用于與虛擬機進行連接,默認假定這個密鑰會被放在文件夾下。三使用管理項目版本使用可以對我們的代碼進行版本控制,如果萬一誤刪了代碼想回到之前的情況,則可以通過版本控制進行回滾。配置選項代表對進行全局設置。 laravel學習筆記,重新梳理知識點。 一、環境配置 1、編輯器選用 Atom PHPStorm SublimeText Atom 是由 GitHub 官方在 201...

    Galence 評論0 收藏0
  • Laravel學習筆記Errors Tracking神器——Sentry

    摘要:中異常處理類主要包含兩個方法和,其中就是主要用來向第三方發送異常報告,這里選擇向這個神器發送異常報告,并使用通知開發人員。通過也能發現的執行流程。 說明:Laravel學習筆記之bootstrap源碼解析中聊異常處理時提到過Sentry這個神器,并打算以后聊聊這款神器,本文主要就介紹這款Errors Tracking神器Sentry,Sentry官網有一句話個人覺得帥呆了: Stop ...

    xiguadada 評論0 收藏0
  • Laravel學習筆記三-前端工作流

    摘要:本節將學習是如何利用形成一套完整的前端工作流模式的。你也可以使用下面命令來強制安裝所有模塊,不管該模塊之前是否安裝過由于國內墻的原因,使用安裝會非常緩慢,慢到想切,不過還好,我們可以使用淘寶提供的國內鏡像進行下載。 本節將學習 Laravel 是如何利用 Sass, NPM, Gulp形成一套完整的前端工作流模式的。 一、句法強大的樣式表Sass Sass 是一種可用于編寫CSS的語言...

    liuchengxu 評論0 收藏0
  • Laravel學習筆記bootstrap源碼解析

    摘要:總結本文主要學習了啟動時做的七步準備工作環境檢測配置加載日志配置異常處理注冊注冊啟動。 說明:Laravel在把Request通過管道Pipeline送入中間件Middleware和路由Router之前,還做了程序的啟動Bootstrap工作,本文主要學習相關源碼,看看Laravel啟動程序做了哪些具體工作,并將個人的研究心得分享出來,希望對別人有所幫助。Laravel在入口index...

    xiaoxiaozi 評論0 收藏0
  • Laravel 學習筆記

    摘要:根據我自己的理解,適當的調整了順序,對一些比較常用的功能做一些說明,可結合文檔學習。 根據我自己的理解,適當的調整了順序,對一些比較常用的功能做一些說明,可結合文檔學習。Learning laravel: 準備Learning laravel: 創建項目Learning laravel: 路由Learning laravel: URLLearning laravel: 控制器Learn...

    Jeff 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<