Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Ensure findById returns null instead of an array when ID is null #1263

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

datamweb
Copy link
Collaborator

Description
Although the phpdocs states that the ID ($id) should not be null, in some cases, data may be retrieved from the database where the ID is set to null.

When null is passed to the find($id) method, instead of returning null or a User object, it returns an empty array ([]).

This leads to a type mismatch with the method signature, which expects a return type of ?User, causing the error:

CodeIgniter\Shield\Models\UserModel::findById(): Return value must be of type ?CodeIgniter\Shield\Entities\User, array returned

This change ensures that the method always adheres to the expected return type (?User), preventing unexpected runtime errors.

Checklist:

  • Securely signed commits
  • Component(s) with PHPDoc blocks, only if necessary or adds value
  • Unit testing, with >80% coverage
  • User guide updated
  • Conforms to style guide

…`null`

Although the phpdocs states that the ID ($id) should not be `null`, in some cases, data may be retrieved from the database where the ID is set to `null`.

When `null` is passed to the `find($id)` method, instead of returning null or a User object, it returns an empty array ([]).

This leads to a type mismatch with the method signature, which expects a return type of `?User`, causing the error:

```
CodeIgniter\Shield\Models\UserModel::findById(): Return value must be of type ?CodeIgniter\Shield\Entities\User, array returned ```
This change ensures that the method always adheres to the expected return type (?User), preventing unexpected runtime errors.
@datamweb datamweb added the refactor Pull requests that refactor code label Mar 31, 2025
Copy link
Member

@michalsn michalsn left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can we add a test for this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
refactor Pull requests that refactor code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants