\Drupal calls should be avoided in classes

Created on 7 May 2024, 11 months ago
Updated 14 June 2024, 10 months ago

Problem/Motivation

From https://git.drupalcode.org/project/eloqua_api_redux/-/jobs/1333054

$ php vendor/bin/phpstan analyze $_WEB_ROOT/modules/custom/$CI_PROJECT_NAME $PHPSTAN_CONFIGURATION --no-progress || EXIT_CODE=$?
 ------ ---------------------------------------------------------------------- 
  Line   src/Service/EloquaApiClient.php                                       
 ------ ---------------------------------------------------------------------- 
  150    \Drupal calls should be avoided in classes, use dependency injection  
         instead                                                               
 ------ ---------------------------------------------------------------------- 
 [ERROR] Found 1 error

Steps to reproduce

Run Gitlab CI

Proposed resolution

Use dependency injection

Remaining tasks

  1. Update the code
  2. Run sniffers, linters, and automated tests
  3. Test manually

User interface changes

None

API changes

None

Data model changes

None

📌 Task
Status

Active

Version

2.0

Component

Code

Created by

🇺🇸United States papagrande US West Coast

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

Merge Requests

Comments & Activities

  • Issue created by @papagrande
  • Merge request !7Fix phpstan warning → (Merged) created by papagrande
  • Status changed to Needs review 10 months ago
  • 🇺🇸United States papagrande US West Coast
  • Status changed to RTBC 10 months ago
  • 🇮🇳India diwakar07

    Hi,

    I reviewed MR !7.
    It successfully fixes the phpstan errors, the gitlab ci pipeline passes.
    The changes are following the dependency injection.
    Looks good to me.

    Moving to RTBC.

  • Status changed to Needs work 5 months ago
  • 🇺🇸United States papagrande US West Coast

    I just merged in another MR. Can someone address the merge conflicts and any new PHPStan errors?

    Thanks.

  • 🇺🇸United States papagrande US West Coast

    Conflicts fixed. Please review again.

  • 🇺🇸United States erindarri

    When attempting to apply this against 2.0.x-dev, this is failing to apply for me in:

    settings.php

    --- src/Form/Settings.php
    +++ src/Form/Settings.php
    @@ -30,8 +30,10 @@ class Settings extends ConfigFormBase {
        * @param \Drupal\Core\Datetime\DateFormatterInterface $date_formatter
        *   Date Formatter.
        */
    -  public function __construct(ConfigFactoryInterface $config_factory,
    -                              DateFormatterInterface $date_formatter) {
    +  public function __construct(
    +    ConfigFactoryInterface $config_factory,
    +    DateFormatterInterface $date_formatter,
    +  ) {
         parent::__construct($config_factory);
         $this->dateFormatter = $date_formatter;
       }
    

    and EloquaApiClient.php.

    --- src/Service/EloquaApiClient.php
    +++ src/Service/EloquaApiClient.php
    @@ -70,16 +77,22 @@ class EloquaApiClient {
        *   A Guzzle client object.
        * @param \Drupal\Component\Datetime\TimeInterface $time
        *   Time service.
    +   * @param \Drupal\eloqua_api_redux\Service\EloquaAuthFallbackInterface $authFallbackDefault
    +   *   Eloqua auth fallback service.
        */
    -  public function __construct(ConfigFactory $config,
    -                              LoggerChannelFactoryInterface $loggerFactory,
    -                              ClientFactory $httpClientFactory,
    -                              TimeInterface $time) {
    +  public function __construct(
    +    ConfigFactory $config,
    +    LoggerChannelFactoryInterface $loggerFactory,
    +    ClientFactory $httpClientFactory,
    +    TimeInterface $time,
    +    EloquaAuthFallbackInterface $authFallbackDefault,
    +  ) {
         $this->config = $config->get('eloqua_api_redux.settings');
         $this->configTokens = $config->getEditable('eloqua_api_redux.tokens');
         $this->loggerFactory = $loggerFactory;
         $this->httpClientFactory = $httpClientFactory;
         $this->time = $time;
    +    $this->authFallbackDefault = $authFallbackDefault;
       }
     
       /**
    
  • 🇺🇸United States erindarri

    I applied the diff and this merges cleanly.
    GitLab pipeline is still passing.

    • papagrande committed 881d32e7 on 2.0.x
      Issue #3445820 by papagrande, erindarri, diwakar07: Add back baseline...
  • 🇺🇸United States papagrande US West Coast

    Thanks @erindarri, @diwakar07

  • Automatically closed - issue fixed for 2 weeks with no activity.

Production build 0.71.5 2024