LabelAlignment.php 503 B

1234567891011121314151617181920212223242526
  1. <?php
  2. declare(strict_types=1);
  3. /*
  4. * (c) Jeroen van den Enden <info@endroid.nl>
  5. *
  6. * This source file is subject to the MIT license that is bundled
  7. * with this source code in the file LICENSE.
  8. */
  9. namespace Endroid\QrCode;
  10. use MyCLabs\Enum\Enum;
  11. /**
  12. * @method static LabelAlignment LEFT()
  13. * @method static LabelAlignment CENTER()
  14. * @method static LabelAlignment RIGHT()
  15. */
  16. class LabelAlignment extends Enum
  17. {
  18. const LEFT = 'left';
  19. const CENTER = 'center';
  20. const RIGHT = 'right';
  21. }