diff --git a/core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php b/core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php index f04b51e..4ea6c36 100644 --- a/core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php +++ b/core/lib/Drupal/Core/Config/Entity/ConfigEntityType.php @@ -185,7 +185,7 @@ public function getPropertiesToExport() { else { $definition = $this->getTypedConfig()->getDefinitionForEntityType($this->id()); if (!isset($definition['mapping'])) { - throw new SchemaIncompleteException(SafeMarkup::format('Incomplete or missing schema for @entity_type_id', ['@entity_type_id' => $this->id()])); + throw new SchemaIncompleteException('Incomplete or missing schema for ' . $this->id()); } $this->mergedConfigExport = array_combine(array_keys($definition['mapping']), array_keys($definition['mapping'])); }