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
18 lines
414 B
PHP
18 lines
414 B
PHP
<?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;
|
|
} |