mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 17:21:39 +09:00
20 lines
313 B
PHP
20 lines
313 B
PHP
<?php
|
|
|
|
namespace Rhymix\Framework\Parsers\DBQuery;
|
|
|
|
/**
|
|
* Condition class.
|
|
*/
|
|
class Condition extends VariableBase
|
|
{
|
|
public $operation;
|
|
public $column;
|
|
public $var;
|
|
public $ifvar;
|
|
public $default;
|
|
public $not_null;
|
|
public $filter;
|
|
public $minlength = 0;
|
|
public $maxlength = 0;
|
|
public $pipe = 'AND';
|
|
}
|