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
Added connectionResolver(), which lets Leaf Db borrow a connection owned by something else instead of opening its own. You hand it a function that returns a PDO, and that function only runs the first time a query actually needs the connection, so registering one costs nothing. Leaf MVC uses this to run your models, db(), and Leaf Auth on a single shared connection per request, which creates a sort of perfect connect sync instead of previous patches