diff options
author | Chris Cornutt <enygma@phpdeveloper.org> | 2015-07-22 15:18:09 -0500 |
---|---|---|
committer | Chris Cornutt <enygma@phpdeveloper.org> | 2015-07-22 15:18:09 -0500 |
commit | 61328123ea4cfbd9a71da699e7a8e1d5fdf2de3c (patch) | |
tree | a5df95f0efe3b41b39b7bb58a5f3069c67b0de04 | |
parent | 2296cedf3f68accc5ca87e590ddbdf7af16a0e4d (diff) | |
download | gatekeeper-61328123ea4cfbd9a71da699e7a8e1d5fdf2de3c.zip gatekeeper-61328123ea4cfbd9a71da699e7a8e1d5fdf2de3c.tar.gz gatekeeper-61328123ea4cfbd9a71da699e7a8e1d5fdf2de3c.tar.bz2 |
Updating docs to add the "use" for the install examples
-rw-r--r-- | docs/installation-and-configuration.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/docs/installation-and-configuration.md b/docs/installation-and-configuration.md index e8be68a..d5dc9ba 100644 --- a/docs/installation-and-configuration.md +++ b/docs/installation-and-configuration.md @@ -43,6 +43,8 @@ up the connection and get the instance configured: ```php <?php require_once 'vendor/autoload.php'; +use \Psecio\Gatekeeper\Gatekeeper; + Gatekeeper::init(); ?> ``` |