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