It's called a HEREDOC and there just doesn't seem to be an easy way to find it if you don't know it's name.
$buff = <<<SOMETEXT
Four score and seven years ago
our fathers brought forth to $thisCountry
a new nation, conceived in {$obj->Liberty()}
and dedicated to the proposition that
{$men['all']} are created equal.
SOMETEXT;
Note that the closer MUST be on the left side, no white space in front of it allowed.
<edit>Text INSIDE the heredoc does not need to be on the left spine, all whitespace is honored.</edit>