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

Add abstract class 'UserManager'

This commit is contained in:
Marco
2017-02-21 07:59:49 +01:00
parent 8acd3a9779
commit a7d640154c

12
src/UserManager.php Normal file
View File

@@ -0,0 +1,12 @@
<?php
/*
* PHP-Auth (https://github.com/delight-im/PHP-Auth)
* Copyright (c) delight.im (https://www.delight.im/)
* Licensed under the MIT License (https://opensource.org/licenses/MIT)
*/
namespace Delight\Auth;
/** Abstract base class for components implementing user management */
abstract class UserManager {}