1: <?php
2:
3: namespace Charcoal\Cms\Section;
4:
5:
6: // From 'charcoal-cms'
7: use Charcoal\Cms\AbstractSection;
8: use Charcoal\Cms\Mixin\ContentSectionInterface;
9:
10: /**
11: * Content section
12: */
13: class ContentSection extends AbstractSection
14: {
15: /**
16: * @return string
17: */
18: public function sectionType()
19: {
20: return AbstractSection::TYPE_CONTENT;
21: }
22: }
23: