Skip to content

v1.4.0

Compare
Choose a tag to compare
@nox7 nox7 released this 18 Aug 14:22
· 157 commits to main since this release
865cc0b

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);