phug-php/formatter

View on GitHub
Formatter/ElementInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Formatter;

use Phug\Ast\NodeInterface;

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

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