diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:58:37 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-09-26 00:58:37 +0200 |
commit | b27fc70a7d889ad9ed424666059b718eeb82cb05 (patch) | |
tree | f0a871aa9e0b74da3e6352cc35c9aec554c3844f /phpBB/docs/auth_api.html | |
parent | 03639c081cfe92dea223b6c2125e94319ae001ce (diff) | |
download | forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.gz forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.bz2 forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.tar.xz forums-b27fc70a7d889ad9ed424666059b718eeb82cb05.zip |
[ticket/11866] More namespaces
PHPBB3-11866
Diffstat (limited to 'phpBB/docs/auth_api.html')
-rw-r--r-- | phpBB/docs/auth_api.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/docs/auth_api.html b/phpBB/docs/auth_api.html index f45ea5e5c8..c68ae7821f 100644 --- a/phpBB/docs/auth_api.html +++ b/phpBB/docs/auth_api.html @@ -86,7 +86,7 @@ <p>To use any methods contained with the <code>auth</code> class it first needs to be instantiated. This is best achieved early in the execution of the script in the following manner:</p> <div class="codebox"><pre> -$auth = new phpbb_auth(); +$auth = new phpbb\auth\auth(); </pre></div> <p>Once an instance of the class has been created you are free to call the various methods it contains. Please note that should you wish to use the <code>auth_admin</code> methods you will need to instantiate this separately but in the same way.</p> |