Apply PSR-12 code style (#3886)
[GitHub/WoltLab/WCF.git] / wcfsetup / install / files / lib / system / form / builder / container / TabFormContainer.class.php
1 <?php
2
3 namespace wcf\system\form\builder\container;
4
5 /**
6 * Represents a container that is a tab of a tab menu.
7 *
8 * @author Matthias Schmidt
9 * @copyright 2001-2019 WoltLab GmbH
10 * @license GNU Lesser General Public License <http://opensource.org/licenses/lgpl-license.php>
11 * @package WoltLabSuite\Core\System\Form\Builder\Container
12 * @since 5.2
13 */
14 class TabFormContainer extends FormContainer implements ITabFormContainer
15 {
16 /**
17 * @inheritDoc
18 */
19 protected $templateName = '__tabFormContainer';
20
21 /**
22 * @inheritDoc
23 */
24 public function __construct()
25 {
26 $this->addClass('tabMenuContent');
27 }
28 }