Example output:
$content = array(<<<'EOF'
foo
EOF
, "bar");
Not sure what would be cleaner - maybe something like
$content = array(
<<<'EOF'
foo
EOF
, "bar"
);
or
$content = array(
<<<'EOF'
foo
EOF
,
"bar"
);
(the first element can be indented normally, the comma is at the end of a line, and the second element starts on its own line)
Most helpful comment
or
(the first element can be indented normally, the comma is at the end of a line, and the second element starts on its own line)