Skip to content
Snippets Groups Projects
Verified Commit 361b9db4 authored by Jess's avatar Jess
Browse files

Issue #3417668 by ankitv18, smustgrave, _shY, quietone, catch: Correct version...

Issue #3417668 by ankitv18, smustgrave, _shY, quietone, catch: Correct version in deprecation for #3363424
parent 14e9234d
No related branches found
No related tags found
2 merge requests!11185Issue #3477324 by andypost, alexpott: Fix usage of str_getcsv() and fgetcsv() for PHP 8.4,!9944Issue #3483353: Consider making the createCopy config action optionally fail...
Pipeline #240922 passed with warnings
Pipeline: drupal

#240936

    Pipeline: drupal

    #240931

      Pipeline: drupal

      #240925

        +1
        ......@@ -90,7 +90,7 @@ class PermissionHandler implements PermissionHandlerInterface {
        */
        public function __construct(ModuleHandlerInterface $module_handler, TranslationInterface $string_translation, ControllerResolverInterface|CallableResolver $callable_resolver, protected ?ModuleExtensionList $moduleExtensionList = NULL) {
        if ($callable_resolver instanceof ControllerResolverInterface) {
        @trigger_error('Calling ' . __METHOD__ . '() with an argument of ControllerResolverInterface is deprecated in drupal:10.2.0 and is removed in drupal:11.0.0. Use \Drupal\Core\Utility\CallableResolver instead. See https://www.drupal.org/node/3397954', E_USER_DEPRECATED);
        @trigger_error('Calling ' . __METHOD__ . '() with an argument of ControllerResolverInterface is deprecated in drupal:10.3.0 and is removed in drupal:11.0.0. Use \Drupal\Core\Utility\CallableResolver instead. See https://www.drupal.org/node/3397954', E_USER_DEPRECATED);
        $callable_resolver = \Drupal::service('callable_resolver');
        }
        $this->callableResolver = $callable_resolver;
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment