与此问题类似:Webstorm turn off new spaces in anonymous function declaration
只是尝试禁用匿名函数调用空间。
$this->call(function ()
{
return 'test';
});
我喜欢以下
$this->call(function()
{
return 'test';
});
在上面链接的问题上,为JS编码样式提供了答案,但我正在寻找PHP答案。
答案 0 :(得分:1)
截至目前,使用PhpStorm 7.1,这是不可能的。 JavaScript Style下的选项是“函数表达式”。他们没有为php的回调实现那个或者什么。
答案 1 :(得分:1)
它是PHPStorm中的一个已知错误,并在this issue的问题跟踪器中进行跟踪。
答案 2 :(得分:0)