mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-05-08 19:42:15 +09:00
Create basic structure of XML query
This commit is contained in:
parent
c97b161e42
commit
20025077f7
11 changed files with 303 additions and 8 deletions
16
common/framework/parsers/dbquery/condition.php
Normal file
16
common/framework/parsers/dbquery/condition.php
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<?php
|
||||
|
||||
namespace Rhymix\Framework\Parsers\DBQuery;
|
||||
|
||||
/**
|
||||
* Condition class.
|
||||
*/
|
||||
class Condition extends GenericVar
|
||||
{
|
||||
public $operation;
|
||||
public $column;
|
||||
public $var;
|
||||
public $default;
|
||||
public $not_null;
|
||||
public $operator = 'AND';
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue