From: Andrey Kutejko Date: Mon, 5 Jan 2015 20:15:48 +0000 (+0200) Subject: fix namespace X-Git-Tag: 0.6~90 X-Git-Url: https://git.andy128k.dev/?a=commitdiff_plain;h=afa359bc226ca2a29b67bac0e5fefabdf4c4ca9d;p=ipf.git fix namespace --- diff --git a/ipf/auth/commands/createsuperuser.php b/ipf/auth/commands/createsuperuser.php index fc44460..fa88d93 100644 --- a/ipf/auth/commands/createsuperuser.php +++ b/ipf/auth/commands/createsuperuser.php @@ -11,9 +11,9 @@ class CreateSuperUser { print "Create superuser\n"; - $username = IPF_Shell::ask(' Username: '); - $password = IPF_Shell::ask(' Password: '); - $email = IPF_Shell::ask(' E-mail: '); + $username = \IPF_Shell::ask(' Username: '); + $password = \IPF_Shell::ask(' Password: '); + $email = \IPF_Shell::ask(' E-mail: '); $su = \PFF\Container::auth()->createUser(); $su->username = $username;