You are here

public function DeployLogger::logEntityUpdated in Build Hooks 8.2

Same name and namespace in other branches
  1. 3.x src/DeployLogger.php \Drupal\build_hooks\DeployLogger::logEntityUpdated()

Logs the updating of an entity.

Parameters

\Drupal\Core\Entity\ContentEntityInterface $entity: The entity.

File

src/DeployLogger.php, line 107

Class

DeployLogger
Class DeployLogger.

Namespace

Drupal\build_hooks

Code

public function logEntityUpdated(ContentEntityInterface $entity) {
  $this
    ->logEntityCreated($entity);
}