Adding user accounts.
This commit is contained in:
parent
a07ba4020c
commit
188162f0a2
22 changed files with 800 additions and 16 deletions
20
PHPCI/Store/UserStore.php
Normal file
20
PHPCI/Store/UserStore.php
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
<?php
|
||||
|
||||
/**
|
||||
* User store for table: user
|
||||
*/
|
||||
|
||||
namespace PHPCI\Store;
|
||||
|
||||
require_once(APPLICATION_PATH . 'PHPCI/Store/Base/UserStoreBase.php');
|
||||
|
||||
use PHPCI\Store\Base\UserStoreBase;
|
||||
|
||||
/**
|
||||
* User Store
|
||||
* @uses PHPCI\Store\Base\UserStoreBase
|
||||
*/
|
||||
class UserStore extends UserStoreBase
|
||||
{
|
||||
// This class has been left blank so that you can modify it - changes in this file will not be overwritten.
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue