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