This commit is contained in:
therselman 2017-07-14 21:06:51 +02:00
parent 1528027a29
commit b4ccf128eb

25
src/Table.php Normal file
View File

@ -0,0 +1,25 @@
<?php
namespace Twister\DBAL;
use Twister\DBAL\Types;
class Table
{
protected $fields = null;
public function __construct(array $fields = null)
{
$this->fields =& $fields;
}
public function __get($field)
{
return $this->fields[$field];
}
public static function build($db, string $table)
{
}
}