getClassName(); } public function getModelClass(): string { return Model::class; } public function getEntityClass(): string { return Entity::class; } public function getEntitiesForLineUp(): array { $this->getModel()->whereNotIn("process", DBMS_GEARLIST_PROCESS_TYPES); $this->getModel()->whereNotIn("cpuname", DBMS_GEARLIST_CPU_TYPES); $this->getModel()->orderBy(["process" => "ASC", "price" => "ASC", "cpuname" => "asc"]); return $this->getEntities(); } }