1
0
mirror of https://github.com/delight-im/PHP-Auth.git synced 2025-08-02 06:10:14 +02:00

Manually require file 'Exceptions.php' in parent class as well

This commit is contained in:
Marco
2017-02-21 08:45:27 +01:00
parent 9252bee030
commit 0b0258f29a
2 changed files with 3 additions and 1 deletions

View File

@@ -15,7 +15,7 @@ use Delight\Db\PdoDsn;
use Delight\Db\Throwable\Error;
use Delight\Db\Throwable\IntegrityConstraintViolationException;
require __DIR__.'/Exceptions.php';
require_once __DIR__ . '/Exceptions.php';
/** Component that provides all features and utilities for secure authentication of individual users */
final class Auth extends UserManager {

View File

@@ -11,6 +11,8 @@ namespace Delight\Auth;
use Delight\Db\PdoDatabase;
use Delight\Db\PdoDsn;
require_once __DIR__ . '/Exceptions.php';
/** Abstract base class for components implementing user management */
abstract class UserManager {