Create basic structure of XML query

This commit is contained in:
Kijin Sung 2020-06-22 16:53:44 +09:00
parent c97b161e42
commit 20025077f7
11 changed files with 303 additions and 8 deletions

View 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';
}