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/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;
}