Skip to content

Commit

Permalink
Merge pull request #4 from willove/patch-1
Browse files Browse the repository at this point in the history
Update TableManager.php
  • Loading branch information
kiss291323003 authored Jan 18, 2019
2 parents b26d3a0 + 0a64984 commit b532467
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/TableManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@
class TableManager
{
use Singleton;

const TYPE_INT = Table::TYPE_INT;
const TYPE_FLOAT = Table::TYPE_FLOAT;
const TYPE_STRING = Table::TYPE_STRING;

private $list = [];

Expand Down Expand Up @@ -43,4 +47,4 @@ public function get($name):?Table
return null;
}
}
}
}

0 comments on commit b532467

Please sign in to comment.