You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(bug) The Action enum has an invalid __default value, the empty string (''). If it must have a default value, it should be null. Even better, the enum shouldn't have a default value at all, which will cause an error if one is not specified.
(enhancement) The Context enum should have its __default value set to self::CONTEXT. That would allow code to be a little briefer.
The text was updated successfully, but these errors were encountered:
Action
enum has an invalid__default
value, the empty string (''
). If it must have a default value, it should benull
. Even better, the enum shouldn't have a default value at all, which will cause an error if one is not specified.Context
enum should have its__default
value set toself::CONTEXT
. That would allow code to be a little briefer.The text was updated successfully, but these errors were encountered: