lonnieezell / Bonfire2

CodeIgniter 4-based application skeleton

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

style: Use similar calls model()

neznaika0 opened this issue · comments

I see you are using different calls for models. I think we need to apply a single style.
Example:

$users = model(UserModel::class);

Instead of

$users = new UserModel();