phug-php/phug

View on GitHub
src/Phug/Util/Util/TransformableInterface.php

Summary

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

namespace Phug\Util;

interface TransformableInterface
{
    /**
     * Prevent the expression from being transformed by customization patterns.
     */
    public function preventFromTransformation();

    /**
     * @return bool
     */
    public function isTransformationAllowed();
}