<?php namespace App\KommaApp\Kms\Core\Sections;
/**
*
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
class KmsSectionCompositeTab extends SectionTab {
protected $tabs;
public function addTab($tab)
{
$this->tabs[] = $tab;
}
public function getTabs()
{
return $this->tabs;
}
}