✏️ 正在编辑: LabelAlignment.php
路径:
/srv/systems_dir/koruspay/vendor/endroid/qrcode/src/LabelAlignment.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php declare(strict_types=1); /* * (c) Jeroen van den Enden <info@endroid.nl> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace Endroid\QrCode; use MyCLabs\Enum\Enum; /** * @method static LabelAlignment LEFT() * @method static LabelAlignment CENTER() * @method static LabelAlignment RIGHT() * * @extends Enum<string> * @psalm-immutable */ class LabelAlignment extends Enum { const LEFT = 'left'; const CENTER = 'center'; const RIGHT = 'right'; }
💾 保存文件
← 返回文件管理器