Allow batch scripts to override __construct method

Created on 17 March 2025, 19 days ago

Problem/Motivation

I want to use a custom service in my batch script file, but I can't override the __construct method.

I get
Fatal error: Cannot override final method Drupal\codit_batch_operations\BatchOperations::__construct() in /var/www/html/docroot/modules/custom/mymodule/src/cbo_scripts/MyBatchScript.php on line 33

Proposed resolution

Is there a reason it needs to be a final method or can it just be removed?

πŸ› Bug report
Status

Active

Version

1.0

Component

Code

Created by

πŸ‡ΊπŸ‡ΈUnited States capysara

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

  • Issue created by @capysara
  • Merge request !35Removed final from __construct method. β†’ (Merged) created by capysara
  • πŸ‡ΊπŸ‡ΈUnited States capysara

    Added a MR to remove the "final" to allow overrides.

  • Pipeline finished with Success
    19 days ago
    Total: 210s
    #450691
  • πŸ‡ΊπŸ‡ΈUnited States capysara
  • Pipeline finished with Success
    19 days ago
    Total: 153s
    #450829
  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    @capysara, that is a good question. That change to final came in with some phpstan fixes here . Frankly I didn't understand phpstan's reason for calling it out at the time. Let me investigate this a bit more today (after I've had mee coffee). I am not opposed to changing it back like you've done. The part that is interesting and that I have not figured out yet is that phpstan originally called it out as needing to be final, but it is not re-flagging it on your commit. Makes me wonder if phpstan has fixed an overlay aggressive standard. I'll look into this some more today.

  • πŸ‡ΊπŸ‡ΈUnited States capysara

    Possibly phpstan was calling out because some of the namespaces were missing the backslash and interpreted as relative to the context of the module's namespace? When I extended the __construct method in my batch script, the ones without it were flagged in drupal-check, for example,
    Parameter $state of method Drupal\mymodule\cbo_scripts\LocationsBatchScript::__construct() has invalid type Drupal\codit_batch_operations\Drupal\Core\State\State.

  • Pipeline finished with Success
    19 days ago
    Total: 178s
    #451180
  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida

    @capysara thank you for this contribution. I will release it today to you can be unblocked.

    I am curious what service you needed to inject. If you think it would be useful to others I'd be happy to add it it to the base class.

  • πŸ‡ΊπŸ‡ΈUnited States swirt Florida
  • πŸ‡ΊπŸ‡ΈUnited States capysara

    what service you needed to inject

    It was my custom service. Nothing reusable for others.

    Thanks for the quick turnaround! I really appreciate it.

Production build 0.71.5 2024