phug-php/lexer

View on GitHub
Lexer/Scanner/RawTextScanner.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

/**
 * Use TextScanner with interpolation disabled.
 *
 * @see TextScanner
 */

namespace Phug\Lexer\Scanner;

class RawTextScanner extends TextScanner
{
    const INTERPOLATION_ENABLED = false;
}