By avpaderno on
Change record status:
Published (View all published change records)
Project:
Introduced in branch:
2.1.x
Introduced in version:
2.1.1-beta1
Issue links:
Description:
The constructor for the UserRestrictionsManager class no longer requires the $type_manager argument.
Before
public function __construct(
EntityTypeManagerInterface $entity_manager,
UserRestrictionTypeManagerInterface $typeManager,
LoggerInterface $logger,
TimeInterface $time,
) {
// …
}
After
public function __construct(
EntityTypeManagerInterface $entity_manager,
LoggerInterface $logger,
TimeInterface $time,
) {
// …
}
{Impacts:
Module developers
Site templates, recipes and distribution developers