Skip to content

Commit

Permalink
Merge pull request #7 from alllinux/v0.9.6.1
Browse files Browse the repository at this point in the history
Version 0.9.6 beta - changed the model class mapper
  • Loading branch information
alllinux authored Apr 3, 2023
2 parents b1bded6 + c4a68a3 commit 9bf0fe9
Showing 1 changed file with 22 additions and 6 deletions.
28 changes: 22 additions & 6 deletions application/settings/db/db.class.mask
Original file line number Diff line number Diff line change
@@ -1,18 +1,23 @@
<?php

namespace Nibiru\Model\[FOLDERNAME];
use Nibiru\Adapter\[ADAPTER]\Db;
use Nibiru\Pdo;

/**
* Created by PhpStorm.
* User: kasdorf
* Date: 10.11.17
* Time: 09:38
* Class [TABLE]Model
* @package Nibiru
* @author Stephan Kasdorf
* @date 03.04.23
* @copyright: 2023 Nibiru Framework, you may copy the code,
* but have to inform the author about where it
* is used. So happy copying.
* @licence: BSD 4-Old License
*/
class [CLASSNAME] extends Db
{

[CLASSPARAMETERS]

const TABLE = array(
'table' => '[TABLE]',
'fields' => [FIELDARRAY]
Expand All @@ -28,5 +33,16 @@ class [CLASSNAME] extends Db
{
return self::TABLE;
}

/**
* @desc This are the class wide setters
* currently this is what is needed in order
* to run some addition
*/
[SETTERS]
/**
* @desc This are the class wide getters
* currently this is what is needed in order
* to run some addition
*/
[GETTERS]
}

0 comments on commit 9bf0fe9

Please sign in to comment.