This repository was archived by the owner on Dec 15, 2022. It is now read-only.
This repository was archived by the owner on Dec 15, 2022. It is now read-only.
Heredoc containing a closing PHP tag breaks syntax highlighting #10
Closed
Description
I have a file containing the following:
$this->xml = <<<EOD
<?xml version="1.0"?>
<methodCall>
<methodName>{$this->method}</methodName>
<params>
EOD;
The syntax formatting is picking up the ?>
within the heredoc as a closing PHP tag, and as such the syntax highlighting is broken from this point on in the file.