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
In /src/Admin/Notices.php, the static method add() attempts to use $this
Static methods should not use $this. Either make add() a non-static method, or use a static property (e.g., self::$notices) instead.