CORE UPDATE: Minor update concerning the autoloading class in the core, now it is also possible to give a loading order through the configuration
Minor update concerning the form factory classes in the core, now some javascript events are implemented as well, another update concerning functinoallity will follow soon.
Update on the example configuration file, implementing the autoloading order of interfaces, moduels and traits.
Update for multidatabase support, see the documentation on http://www.nibiru-framework.com
This commit is contained in:
18
application/module/users.php
Normal file
18
application/module/users.php
Normal file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
namespace Nibiru\Module;
|
||||
/**
|
||||
* @desc this file is for the autoloader to function properly,
|
||||
* you might as well use it as the primary user class for your
|
||||
* application, the interface an the trait are currently implemented
|
||||
* Created by PhpStorm.
|
||||
* User: kasdorf
|
||||
* Date: 28.08.18
|
||||
* Time: 11:22
|
||||
*/
|
||||
use Nibiru\Adapter;
|
||||
use Nibiru\Messages;
|
||||
|
||||
class Users implements Adapter\Users
|
||||
{
|
||||
use Messages\Users;
|
||||
}
|
||||
Reference in New Issue
Block a user