annotate core/lib/Drupal/Core/Entity/Entity.php @ 19:fa3358dc1485 tip

Add ndrum files
author Chris Cannam
date Wed, 28 Aug 2019 13:14:47 +0100
parents af1871eacc83
children
rev   line source
Chris@0 1 <?php
Chris@0 2
Chris@0 3 namespace Drupal\Core\Entity;
Chris@0 4
Chris@18 5 @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);
Chris@0 6
Chris@0 7 /**
Chris@0 8 * Defines a base entity class.
Chris@18 9 *
Chris@18 10 * @deprecated in Drupal 8.7.0 and will be removed in Drupal 9.0.0. Use
Chris@18 11 * \Drupal\Core\Entity\EntityBase instead.
Chris@18 12 *
Chris@18 13 * @see https://www.drupal.org/node/3021808
Chris@0 14 */
Chris@18 15 abstract class Entity extends EntityBase {}