/**
  * Page constructor.
  *
  * @param SectionTypeInterface $section
  */
 public function __construct(SectionTypeInterface $section)
 {
     parent::__construct();
     $this->section = $section;
 }
 /**
  * Page constructor.
  *
  * @param SectionFolder $folder
  */
 public function __construct(SectionFolder $folder)
 {
     parent::__construct();
     $this->folder = $folder;
 }