for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Mailcode;
class Mailcode_Parser_Statement_Tokenizer_Process_EscapedQuotes extends Mailcode_Parser_Statement_Tokenizer_Process
{
protected function _process() : void
$this->tokenized = str_replace('\"', '__QUOTE__', $this->tokenized);
}