Skip to content
Snippets Groups Projects

First stab.

Closed spokje requested to merge issue/drupal-3421480:3421480-convert-openerresolver-to into 11.x
2 unresolved threads

Closes #3421480

Merge request reports

Approval is optional
Code Quality is loading
Test summary results are being parsed

Closed by spokjespokje 11 months ago (Feb 29, 2024 8:02am UTC)

Merge details

  • The changes were not merged into 11.x.

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
12 12 * It is not an API and should not be extended or used by code that does not
13 13 * interact with the Media Library module.
14 14 *
15 * @deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. Tag and enjoy
16 * instead. As internal API, baz() may also be removed in a minor release.
  • 93 EntityTypeManagerInterface $entity_type_manager,
    94 RequestStack $request_stack,
    95 ViewExecutableFactory $views_executable_factory,
    96 FormBuilderInterface $form_builder,
    97 protected ClassResolverInterface $classResolver,
    98 protected array $collectedServiceIds,
    99 ?OpenerResolverInterface $opener_resolver = NULL,
    100 ) {
    77 101 $this->entityTypeManager = $entity_type_manager;
    78 102 $this->request = $request_stack->getCurrentRequest();
    79 103 $this->viewsExecutableFactory = $views_executable_factory;
    80 104 $this->formBuilder = $form_builder;
    81 $this->openerResolver = $opener_resolver;
    105 if ($opener_resolver) {
    106 @trigger_error('Calling ' . __CLASS__ . '::_construct() with the $opener_resolver argument is deprecated in drupal:10.3.0 and is removed from drupal:11.0.0. See https://www.drupal.org/node/123123', E_USER_DEPRECATED);
    107 $this->openerResolver = $opener_resolver;
  • closed

  • Please register or sign in to reply
    Loading