File: D:/HostingSpaces/SBogers27/dndin.nl/app/KommaApp/Kms/Core/Sections/SectionTabsBuilder.php
<?php
namespace App\KommaApp\Kms\Core\Sections;
/**
* Class SectionTabsBuilder
* @package App\KommaApp\Kms\Core\Sections
*
* Knows how to build tabs for the case section
*/
class SectionTabsBuilder extends AbstractSectionTabsBuilder
{
/**
* SectionTabsBuilder constructor.
*/
public function __construct()
{
$this->tabsCollection = new SectionTabsCollection();
}
/**
* @see SectionTabsCollection::getOrCreateTab()
* @param $tabName
* @param string $groupName
* @return SectionTab|mixed|null
*/
public function getOrCreateTab($tabName, $groupName = SectionTabGroups::None)
{
return $this->tabsCollection->getOrCreateTab($tabName, $groupName);
}
/**
* @see SectionTabsCollection::clearTabs()
*/
public function clearTabs()
{
$this->tabsCollection->clearTabs();
}
/**
* @param string $test
*/
public function test(string $test)
{
}
}