NamedArgumentConstructorAnnotation.php 346 B

1234567891011121314
  1. <?php
  2. namespace Doctrine\Common\Annotations;
  3. /**
  4. * Marker interface for PHP7/PHP8 compatible support
  5. * for named arguments (and constructor property promotion).
  6. *
  7. * @deprecated Implementing this interface is deprecated
  8. * Use the Annotation @NamedArgumentConstructor instead
  9. */
  10. interface NamedArgumentConstructorAnnotation
  11. {
  12. }