File: D:/HostingSpaces/debout/debout.nl/vendor/komma/kms/src/Core/Sections/Tabs/SectionTabInterface.php
<?php namespace Komma\KMS\Core\Sections\Tabs;
use Illuminate\Support\Collection;
/**
*
* Interface KmsSectionTabInterface
* @package App\Kms\Core\Sections
*/
interface SectionTabInterface
{
/**
* @return string
*/
public function getName();
/**
* @param $item
* @return void
*/
public function addItem($item);
/**
* @return Collection of SectionTabItems
*/
public function getItems(): Collection;
/**
* @return SectionTabInterface
*/
public function clearItems(): SectionTabInterface;
/**
* @param Collection $items
* @return SectionTabInterface
*/
public function setItems(Collection $items): SectionTabInterface;
}