Skip to content

Commit

Permalink
Merge pull request #16 from deadmantfa/deepsource-fix-f978e569
Browse files Browse the repository at this point in the history
Add `public` visibility to class members
  • Loading branch information
deadmantfa authored Jul 14, 2022
2 parents fa137d1 + cb568e7 commit 43c699c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/models/User.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
class User extends BaseUser
{
public const STATUS_ACTIVE = 1;
const STATUS_INACTIVE = 0;
public const STATUS_INACTIVE = 0;

/**
* @param int $id user_id from audit_entry table
Expand Down

0 comments on commit 43c699c

Please sign in to comment.