summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Layout/Footer.php
blob: 21bf262277fb924345c69b65a3dfeb830a9e8572 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?php

namespace ipl\Web\Layout;

use ipl\Html\BaseHtmlElement;

/**
 * Container for footer
 */
class Footer extends BaseHtmlElement
{
    protected $contentSeparator = "\n";

    protected $defaultAttributes = ['class' => 'footer'];

    protected $tag = 'div';
}