<?php
namespace App\Komma\Kms\Core\Sections;
/**
* Class AbstractSectionTabsBuilder
*/
abstract class AbstractSectionTabsBuilder
{
protected $tabsCollection;
/**
* Gets the created tabs
*
* @return SectionTabsCollection|SectionTabsCollectionInterface
*/
public function getTabsCollection()
{
return $this->tabsCollection;
}
}