From ac95be3714c979efd78af064e8490eaba6bc6f1a Mon Sep 17 00:00:00 2001 From: Marco Date: Sun, 4 Dec 2016 16:49:09 +0100 Subject: [PATCH] Use dummy password (instead of no password at all) in examples --- tests/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/index.php b/tests/index.php index 4bd649f..9a9d3fe 100644 --- a/tests/index.php +++ b/tests/index.php @@ -19,7 +19,7 @@ header('Content-type: text/html; charset=utf-8'); 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);