Drupal investigation

ElementMetadata.php 919B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\Validator\Mapping;
  11. /**
  12. * Contains the metadata of a structural element.
  13. *
  14. * @author Bernhard Schussek <bschussek@gmail.com>
  15. *
  16. * @deprecated since version 2.5, to be removed in 3.0.
  17. * Extend {@link GenericMetadata} instead.
  18. */
  19. abstract class ElementMetadata extends GenericMetadata
  20. {
  21. public function __construct()
  22. {
  23. if (!$this instanceof MemberMetadata && !$this instanceof ClassMetadata) {
  24. @trigger_error('The '.__CLASS__.' class is deprecated since version 2.5 and will be removed in 3.0. Use the Symfony\Component\Validator\Mapping\GenericMetadata class instead.', E_USER_DEPRECATED);
  25. }
  26. }
  27. }