I want to define my own Category id like(999,2222,3333) and force using it on the PrestaShop database but when I execute it does(1,2,3) How can I force using my own id
foreach ($XMLRSString->Families->Family as $family)
{
$_GET['forceIDs'] = true;
$category = new Category($family->Code);
$category->id = array((int)Configuration::get('PS_LANG_DEFAULT') => $family->Code);
$category->id_category = array((int)Configuration::get('PS_LANG_DEFAULT') => $family->Code);
$category->id_category_default = array((int)Configuration::get('PS_LANG_DEFAULT') => $family->Code);
$category->is_root_category = false;
$category->name = array((int)Configuration::get('PS_LANG_DEFAULT') => $family->Designation);
$category->id_parent = Configuration::get('PS_HOME_CATEGORY');
$category->link_rewrite = array((int)Configuration::get('PS_LANG_DEFAULT') => $family->Code);
$category->add();
}