game/_incl_data/class/Model/Effect.php

13 lines
188 B
PHP
Raw Normal View History

<?php
namespace Model;
use Core\Db;
class Effect
{
public static function getAllbyId(int $id)
{
return Db::getRow('select * from eff_main where id2 = ?', [$id]);
}
}