v1.4.0
This update removes the necessity of manually interfacing with the Abyss ORM class to perform database operations on ModelClass instances (such as a User). The following methods have been added to all classes that extend from ModelClass
static ModelClass::fetch();
static ModelClass::query();
static ModelClass::saveAll();
public static function fetch(int $keyValue);
public static function query(ColumnQuery $columnQuery, ResultOrder $resultOrder, Pager $pager);
public static function saveAll(array $modelClasses);