Skip to content

Commit

Permalink
make constants private scope (magento#22833: Short-term admin accounts)
Browse files Browse the repository at this point in the history
  • Loading branch information
lfolco committed Mar 3, 2020
1 parent b03b0a0 commit c8a41b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/code/Magento/Security/Model/UserExpirationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
interface UserExpirationInterface
{

const EXPIRES_AT = 'expires_at';
private const EXPIRES_AT = 'expires_at';

const USER_ID = 'user_id';
private const USER_ID = 'user_id';

/**
* `expires_at` getter.
Expand Down

0 comments on commit c8a41b7

Please sign in to comment.