File: D:/HostingSpaces/SBogers10/brameda.komma.pro/app/Komma/Kms/Core/Sections/SectionTabItem.php
<?php
namespace App\Komma\Kms\Core\Sections;
use App\Komma\Kms\Core\Attributes\Attribute;
/**
* Links a piece of data (can be anything) to a SectionTabGroups value.
*
* Class AbstractSectionTabItem
* @package App\Komma\Kms\Core\Sections
*/
class SectionTabItem extends AbstractSectionTabItem
{
public function __construct(Attribute $attribute, $sectionTabGroup = SectionTabGroups::General)
{
$this->setAttribute($attribute);
$this->setGroup($sectionTabGroup);
}
}