mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-25 06:09:55 +09:00
Use DB result helper class instead of plain BaseObject
This commit is contained in:
parent
c04fa73156
commit
0b05404f23
2 changed files with 49 additions and 34 deletions
15
common/framework/helpers/dbresulthelper.php
Normal file
15
common/framework/helpers/dbresulthelper.php
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Helpers;
|
||||
|
||||
/**
|
||||
* DB result helper class.
|
||||
*
|
||||
* Instances of this class will be returned from DB queries.
|
||||
*/
|
||||
class DBResultHelper extends \BaseObject
|
||||
{
|
||||
// Additional attributes for DB query results.
|
||||
public $page_navigation;
|
||||
public $data;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue