File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -20,16 +20,16 @@ interface Authenticator
2020 Failure = 3 ,
2121 NotApproved = 4 ;
2222
23- /** @deprecated use Authenticator::IdentityNotFound */
23+ #[\Deprecated( ' use Authenticator::IdentityNotFound ' )]
2424 public const IDENTITY_NOT_FOUND = self ::IdentityNotFound;
2525
26- /** @deprecated use Authenticator::InvalidCredential */
26+ #[\Deprecated( ' use Authenticator::InvalidCredential ' )]
2727 public const INVALID_CREDENTIAL = self ::InvalidCredential;
2828
29- /** @deprecated use Authenticator::Failure */
29+ #[\Deprecated( ' use Authenticator::Failure ' )]
3030 public const FAILURE = self ::Failure;
3131
32- /** @deprecated use Authenticator::NotApproved */
32+ #[\Deprecated( ' use Authenticator::NotApproved ' )]
3333 public const NOT_APPROVED = self ::NotApproved;
3434
3535 /**
Original file line number Diff line number Diff line change @@ -22,13 +22,13 @@ interface Authorizator
2222 /** Permission type: deny */
2323 public const Deny = false ;
2424
25- /** @deprecated use Authorizator::All */
25+ #[\Deprecated( ' use Authorizator::All ' )]
2626 public const ALL = self ::All;
2727
28- /** @deprecated use Authorizator::Allow */
28+ #[\Deprecated( ' use Authorizator::Allow ' )]
2929 public const ALLOW = self ::Allow;
3030
31- /** @deprecated use Authorizator::Deny */
31+ #[\Deprecated( ' use Authorizator::Deny ' )]
3232 public const DENY = self ::Deny;
3333
3434 /**
Original file line number Diff line number Diff line change @@ -32,16 +32,16 @@ class User
3232 LogoutManual = 1 ,
3333 LogoutInactivity = 2 ;
3434
35- /** @deprecated use User::LogoutManual */
35+ #[\Deprecated( ' use User::LogoutManual ' )]
3636 public const LOGOUT_MANUAL = self ::LogoutManual;
3737
38- /** @deprecated use User::LogoutManual */
38+ #[\Deprecated( ' use User::LogoutManual ' )]
3939 public const MANUAL = self ::LogoutManual;
4040
41- /** @deprecated use User::LogoutInactivity */
41+ #[\Deprecated( ' use User::LogoutInactivity ' )]
4242 public const LOGOUT_INACTIVITY = self ::LogoutInactivity;
4343
44- /** @deprecated use User::LogoutInactivity */
44+ #[\Deprecated( ' use User::LogoutInactivity ' )]
4545 public const INACTIVITY = self ::LogoutInactivity;
4646
4747 /** role for an unauthenticated user, unless a guest identity provides its own roles */
Original file line number Diff line number Diff line change 1313 */
1414interface UserStorage
1515{
16- /** @deprecated use User::LogoutManual */
16+ #[\Deprecated( ' use User::LogoutManual ' )]
1717 public const LOGOUT_MANUAL = 1 ;
1818
19- /** @deprecated use User::LogoutInactivity */
19+ #[\Deprecated( ' use User::LogoutInactivity ' )]
2020 public const LOGOUT_INACTIVITY = 2 ;
2121
2222 /**
You can’t perform that action at this time.
0 commit comments