From 4cd6360fc7edbbff72c9199b4f4ce3548b659232 Mon Sep 17 00:00:00 2001 From: Marco Date: Tue, 28 Aug 2018 23:51:30 +0200 Subject: [PATCH] Document optional database name, schema or other qualifier in README --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 7811f67..11c9a54 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,8 @@ During development, you may want to disable the request limiting or throttling p During the lifetime of a session, some user data may be changed remotely, either by a client in another session or by an administrator. That means this information must be regularly resynchronized with its authoritative source in the database, which this library does automatically. By default, this happens every five minutes. If you want to change this interval, pass a custom interval in seconds to the constructor as the fifth argument, which is named `$sessionResyncInterval`. +If all your database tables need a common database name, schema name, or other qualifier that must be specified explicitly, you can optionally pass that qualifier to the constructor as the sixth parameter, which is named `$dbSchema`. + ### Registration (sign up) ```php