2016-10-25 62 views
1

通過的錯誤,我已經添加了文檔塊評論我的文件:PHP-CS-定影液:如何刪除文檔塊標題評論

/** 
* @author  My Name <[email protected]> 
* @copyright Copyright (C) 2012 - 2015 My App. All rights reserved. 
* @license  Some notes about the license. 
*/ 

但是,當我想設置像那些標題註釋中這樣對不對:

/* 
* This file is part of the My App. 
* 
* Copyright My Name 2012-2016. 
* 
* This code is to consider private and non disclosable to anyone for whatever reason. 
* Every right on this code is reserved. 
* 
* @author My name <[email protected]> 
*/ 

現在,我添加了標題註釋using PHP-CS-Fixer但現在,我該如何刪除舊的?

回答

0

使用friendsofphp/php-cs-fixer:^2.0.0,標題中的註釋完全可以使用下面的配置中刪除:

$config = PhpCsFixer\Config::create()->setRules([ 
    'header_comment' => [ 
     'header' => '', 
    ], 
]); 

注意我們如何提供一個空字符串。