fetchAll(); } public static function getRow($id) { $stm = parent::exec('USER_GET_WITH_ID', ['id' => $id]); return $stm->fetchAll(); } public static function updateUser($array) { $stm = parent::exec('USER_UPDATE', $array); } }