Rename all common/framework source files to be case-sensitive

This commit is contained in:
Kijin Sung 2022-12-26 16:13:09 +09:00
parent 60fd7d7cf2
commit 0029d1a1ec
73 changed files with 5 additions and 5 deletions

View file

@ -0,0 +1,15 @@
<?php
namespace Rhymix\Framework\Parsers\DBQuery;
/**
* Table class.
*/
class Table
{
public $name;
public $alias;
public $ifvar;
public $join_type;
public $join_conditions = array();
}