phug-php/phug

View on GitHub
src/Phug/Lexer/Lexer/Scanner/RawTextScanner.php

Summary

Maintainability
A
0 mins
Test Coverage
F
0%
<?php

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

namespace Phug\Lexer\Scanner;

class RawTextScanner extends TextScanner
{
    const INTERPOLATION_ENABLED = false;
}