phug-php/formatter

View on GitHub
Formatter/Element/DocumentElement.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Phug\Formatter\Element;

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

    public function isAutoClosed()
    {
        return false;
    }
}