1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-03 22:57:27 +02:00

Use dummy password (instead of no password at all) in examples

This commit is contained in:
Marco
2016-12-04 16:49:09 +01:00
parent e6c8ae056c
commit ac95be3714

View File

@@ -19,7 +19,7 @@ header('Content-type: text/html; charset=utf-8');
require __DIR__.'/../vendor/autoload.php'; require __DIR__.'/../vendor/autoload.php';
$db = new PDO('mysql:dbname=php_auth;host=127.0.0.1;charset=utf8mb4', 'root', ''); $db = new PDO('mysql:dbname=php_auth;host=127.0.0.1;charset=utf8mb4', 'root', 'monkey');
$auth = new \Delight\Auth\Auth($db); $auth = new \Delight\Auth\Auth($db);