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
The new RiskyTruthyFalsyComparison errors are introduced by psalm 5.20.0.
Disable on example files. Using getenv('MONGODB_URI') ?: 'mongodb://127.0.0.1/' is safe as any falsy value could be replaced by the default URI.
Replace !empty($filter) by $filter !== [] as $filter is an array or an object, and even empty(new stdClass) is true. This might be a necessary bug fix.
0 commit comments