public function DeployLogger::logEntityUpdated in Build Hooks 8.2
Same name and namespace in other branches
- 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_hooksCode
public function logEntityUpdated(ContentEntityInterface $entity) {
$this
->logEntityCreated($entity);
}