summaryrefslogtreecommitdiffstats
path: root/vendor/ipl/web/src/Layout/Content.php
blob: bded4ab46a7d14d509dd5769fa5b38911ed2c7c6 (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 content
 */
class Content extends BaseHtmlElement
{
    protected $contentSeparator = "\n";

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

    protected $tag = 'div';
}