HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/lmbm.komma.pro/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)
    {

    }
}