phug-php/phug

View on GitHub
src/Phug/Formatter/Formatter/ElementInterface.php

Summary

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

namespace Phug\Formatter;

use Phug\Ast\NodeInterface;

interface ElementInterface extends NodeInterface
{
    /**
     * @return string
     */
    public function dump();

    /**
     * @return \Phug\Parser\NodeInterface
     */
    public function getOriginNode();
}