When I format code, which has '?>' in it, all subsequent code is is formatted badly.
<?php
$xmldata .= '?>';
$test = true;
if ($test) {
echo "hi";
}
==>
<?php
$xmldata .= '?>';
$test = true;
if ($test) {
echo "hi";
}
As you might expect, this behaviour appeared building xml data. (<?xml version="1.0" encoding="UTF-8"?>)
When I format code, which has '?>' in it, all subsequent code is is formatted badly.
==>
As you might expect, this behaviour appeared building xml data. (
<?xml version="1.0" encoding="UTF-8"?>)