/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/Tui/Style/Align.php
29 строк
667 B
Fabien Potencier
[Tui] Add the component
29 апр 2026, 11:20
29 апр 2026, 11:20
a818679
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Tui\Style; /** * Horizontal alignment of child widgets within a container. * * Controls how a child widget's block is positioned when it renders * narrower than the container's available width (e.g. due to maxColumns). * * @experimental * * @author Fabien Potencier <fabien@symfony.com> */ enum Align: string { case Left = 'left'; case Center = 'center'; case Right = 'right'; }