therselman 7 years ago
parent
commit
b4ccf128eb
  1. 25
      src/Table.php

25
src/Table.php

@ -0,0 +1,25 @@ @@ -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)
{
}
}
Loading…
Cancel
Save