By vasike on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
10.2.x
Introduced in version:
10.2.0
Issue links:
Description:
ConfigEntityMapperInterface extends ConfigMapperInterface with the methods needed for ConfigEntityMapper so we can code against contracts.
With the following "definitions":
interface ConfigEntityMapperInterface extends ConfigMapperInterface {
public function getEntity();
public function setEntity(ConfigEntityInterface $entity);
public function setType(string $entity_type_id): bool;
public function getType(): string;
}
Impacts:
Module developers