phug-php/phug

View on GitHub
src/Phug/Formatter/Formatter/Element/DocumentElement.php

Summary

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

namespace Phug\Formatter\Element;

class DocumentElement extends AbstractMarkupElement
{
    public function getName()
    {
        return 'document';
    }

    public function isAutoClosed()
    {
        return false;
    }
}