Package.php 563 B

12345678910111213141516171819202122232425
  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. use mindplay\annotations\AnnotationManager;
  14. abstract class Package
  15. {
  16. public static function register(AnnotationManager $annotationManager)
  17. {
  18. $annotationManager->registry['required'] = 'mindplay\test\annotations\RequiredAnnotation';
  19. }
  20. }