Entity.php 516 B

123456789101112131415
  1. <?php
  2. namespace Drupal\Core\Entity;
  3. @trigger_error('The ' . __NAMESPACE__ . '\Entity is deprecated in Drupal 8.7.0 and will be removed before Drupal 9.0.0. Instead, use ' . __NAMESPACE__ . '\EntityBase. See https://www.drupal.org/node/3021808', E_USER_DEPRECATED);
  4. /**
  5. * Defines a base entity class.
  6. *
  7. * @deprecated in drupal:8.7.0 and is removed from drupal:9.0.0. Use
  8. * \Drupal\Core\Entity\EntityBase instead.
  9. *
  10. * @see https://www.drupal.org/node/3021808
  11. */
  12. abstract class Entity extends EntityBase {}