1: <?php
2:
3: namespace Charcoal\Cms;
4:
5: // From 'charcoal-cms'
6: use Charcoal\Cms\AbstractSection;
7: use Charcoal\Cms\Mixin\EmptySectionInterface;
8:
9: /**
10: * Empty section
11: *
12: * Empty sections are linked to a static template and do not provide any dynamic content
13: * (except standard section metadata).
14: */
15: class EmptySection extends AbstractSection
16: {
17: }
18: