我已经安装php-cs-fixer
并使用vim
插件https://github.com/stephpy/vim-php-cs-fixer
。我正在使用来自https://github.com/laravel/framework/blob/5.4/.php_cs
. 但是我遇到了这个问题,即@param
fromcomment
块之后的额外空间被删除。
我怎样才能解决这个问题?提前感谢您。
Laravel 使用 PSR2 编码标准。
来自 laravel.com 关于文档 - 请注意,@param
属性后跟两个空格,参数类型,另外两个空格,最后是变量名:
/**
* Register a binding with the container.
*
* @param string|array $abstract
* @param \Closure|string|null $concrete
* @param bool $shared
* @return void
*/
public function bind($abstract, $concrete = null, $shared = false)
{
//
}
谢谢。