From b4ccf128eb44cba796a66e423a21e231033c4f4d Mon Sep 17 00:00:00 2001 From: therselman Date: Fri, 14 Jul 2017 21:06:51 +0200 Subject: [PATCH] --- src/Table.php | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 src/Table.php diff --git a/src/Table.php b/src/Table.php new file mode 100644 index 0000000..a1a8634 --- /dev/null +++ b/src/Table.php @@ -0,0 +1,25 @@ +fields =& $fields; + } + + public function __get($field) + { + return $this->fields[$field]; + } + + public static function build($db, string $table) + { + + } +}