PHPStorm在匿名函数括号之前禁用空格

时间:2014-05-26 20:32:33

标签: php coding-style phpstorm

与此问题类似:Webstorm turn off new spaces in anonymous function declaration

只是尝试禁用匿名函数调用空间。

$this->call(function ()
{
  return 'test';
});

我喜欢以下

$this->call(function()
{
  return 'test';
});

在上面链接的问题上,为JS编码样式提供了答案,但我正在寻找PHP答案。

3 个答案:

答案 0 :(得分:1)

截至目前,使用PhpStorm 7.1,这是不可能的。 JavaScript Style下的选项是“函数表达式”。他们没有为php的回调实现那个或者什么。

答案 1 :(得分:1)

它是PHPStorm中的一个已知错误,并在this issue的问题跟踪器中进行跟踪。

答案 2 :(得分:0)

现在,这是一个附带选项,您可以在设置>下找到它编辑> 代码风格> PHP >的空间

Anonymous function parentheses PHPStorm