Browse Source

phpcs got me

pull/733/head
Eli Zoller 6 years ago
parent
commit
6fa2613199
  1. 10
      src/EventGenerator/EventGenerator.php

10
src/EventGenerator/EventGenerator.php

@ -154,12 +154,16 @@ class EventGenerator implements EventGeneratorInterface
} }
/** /**
* @param $entity EntityInterface * Method to check if an entity is a new revision.
* returns Boolean *
* @param \Drupal\Core\Entity\EntityInterface $entity
* Drupal Entity.
*
* @return bool
* Is new version.
*/ */
protected function isNewRevision(EntityInterface $entity) protected function isNewRevision(EntityInterface $entity)
{ {
// revisions tab.
$bundle_entity_type = $entity->getEntityType()->getBundleEntityType(); $bundle_entity_type = $entity->getEntityType()->getBundleEntityType();
$bundle_entity = \Drupal::entityTypeManager()->getStorage($bundle_entity_type)->load($entity->bundle()); $bundle_entity = \Drupal::entityTypeManager()->getStorage($bundle_entity_type)->load($entity->bundle());
return $bundle_entity->shouldCreateNewRevision(); return $bundle_entity->shouldCreateNewRevision();

Loading…
Cancel
Save