Add Explicit Return Types and Discussion on Return Value

Created on 21 October 2024, 6 months ago

Problem/Motivation



The current codebase lacks explicit return types in functions, leading to potential ambiguity and maintenance issues. Additionally, there is a need for discussion regarding whether the getBalance() function should return NULL or 0 when there is no balance.

Fix



Implement return types for all functions across the codebase.

Steps to reproduce



Review functions throughout the codebase for missing return types.

Proposed resolution



Audit the codebase to identify functions without return types.
Add explicit return types to all identified functions.
Discuss whether getBalance() should return NULL or 0.
MR Link

📌 Task
Status

Active

Version

2.0

Component

Code

Created by

🇮🇳India lavanyatalwar

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

Merge Requests

Comments & Activities

  • Issue created by @lavanyatalwar
  • Merge request !24Resolve #3482077 "Add explicit return" → (Open) created by lavanyatalwar
  • Pipeline finished with Failed
    5 months ago
    Total: 243s
    #323816
  • Pipeline finished with Failed
    5 months ago
    Total: 257s
    #323836
  • 🇮🇳India lavanyatalwar

    I have added return types to all the files.
    This issue is now open for discussion regarding the return value of functions like getBalance(). Should they return 0 or NULL?
    cc: @anybody

  • 🇩🇪Germany Anybody Porta Westfalica

    Let's first fix 🐛 Fix tests Active until we proceed here.

  • Status changed to Needs review 9 days ago
  • 🇺🇸United States rhovland Oregon

    getBalance() effectively cannot return null due to several constraints:

    The balance field is defined as required in the Giftcard entity:

    $fields['balance'] = BaseFieldDefinition::create('commerce_price')
      ->setLabel(t('Balance'))
      ->setDescription(t('Current balance'))
      ->setRequired(TRUE)
    

    Entity validation enforces this. In GiftcardTest::testSaving() an entity without a balance fails validation.

    All code paths that create gift cards set a balance:

    • Direct creation sets a balance
    • Gift card purchases set a balance
    • Bulk generation sets a balance

    The Redemption pane has a check for null when it probably should be checking for zero

    $balance = $giftcard->getBalance();
    if (!$balance) {
      $form_state->setError($pane_form, $this->t('Unable to check gift card %code balance, please try again.', ['%code' => $giftcard->getCode()]));
    }
    

    Becomes

    if ($giftcard->getBalance()->isZero()) {
      $form_state->setError($pane_form, $this->t('The provided gift card %code has no balance.', ['%code' => $giftcard->getCode()]));
    }
    
  • 🇩🇪Germany Anybody Porta Westfalica

    Thanks @rhovland!

    @lavanyatalwar are you planning to proceed on this?

  • 🇮🇳India lavanyatalwar

    Sure, wroking on it.

  • 🇮🇳India lavanyatalwar

    Done with the changes
    @anybody, @rhovland Kindly check and merge :)

  • Pipeline finished with Failed
    4 days ago
    Total: 291s
    #462214
Production build 0.71.5 2024