PhpStorm 9.0.2 中 "heredoc format style" 的设置在哪里

Where are the setting for "heredoc format style" in PhpStorm 9.0.2

我有这样的东西:

$heredoc = <<< HEREDOC_ID 
some $contents 
HEREDOC_ID; 

但格式化后现在看起来像这样:

$heredoc 
    = <<< HEREDOC_ID 
some $contents 
HEREDOC_ID; 

我在哪里可以设置这样的选项?我在 Editor -> Code Style -> PHP.

中找不到它

在 PhpStorm 9 和 10 上,可以通过 Assignment 语句 -> Assignment sign on next line setting on [=20] 更改=]环绕和大括号 选项卡。

此设置还会影响以下代码风格:

关闭

class Foo
{
    var $numbers = array( "one",
                          "two",
                          "three",
                          "four",
                          "five",
                          "six" );
}

开启

class Foo
{
    var $numbers
        = array( "one",
                 "two",
                 "three",
                 "four",
                 "five",
                 "six" );
}