RequiredAnnotation.php 478 B

1234567891011121314151617181920212223
  1. <?php
  2. /**
  3. * This file is part of the php-annotation framework.
  4. *
  5. * (c) Rasmus Schultz <rasmus@mindplay.dk>
  6. *
  7. * This software is licensed under the GNU LGPL license
  8. * for more information, please see:
  9. *
  10. * <https://github.com/mindplay-dk/php-annotations>
  11. */
  12. namespace mindplay\test\annotations;
  13. /**
  14. * Specifies validation requiring a non-empty value.
  15. *
  16. * @usage('property'=>true, 'inherited'=>true)
  17. */
  18. class RequiredAnnotation extends ValidationAnnotationBase
  19. {
  20. }