- 🇮🇳India keshavv India
I appreciate all your efforts.
But the issue is regarding Non-existent service "entity.manager"
So please fix the issue only related to that. Otherwise we will go nowhere.Thank you.
- First commit to issue fork.
- @roshni27 opened merge request.
- Status changed to Needs review
over 1 year ago 8:55am 9 August 2023 - 🇮🇳India roshni27
I have reviewed patches #7 and #11, and they have been applied cleanly. In both patches, the variable $this->entity_typeInfo is being used, but in the defined variable, the name is protected as $entityTypeInfo.
Even though entity_type.bundle.info is injected into the code, it is still being referenced as
$bundle_info = $this->entity_typeInfo->get('entity_type.bundle.info');
$bundles = $bundle_info->getBundleInfo($entity_type);.
I believe it would be more appropriate to use it as follows:
$bundles = $this->entityTypeBundleInfo->getBundleInfo($entity_type).
I have created a merge request. Please take a moment to review it.