You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In next generated piece of code $foreignCollection setted, but not used
/**
* @param Property $property The property object to add.
*/
protected function doAddProperty(Property $property)
{
// set the back reference to this object directly as using provided method either results
// in endless loop or in multiple relations
if (!$property->getCampaignTypes()->contains($this)) { $propertyCampaignType = new PropertyCampaignType();
$propertyCampaignType->setProperty($property);
$this->addPropertyCampaignType($propertyCampaignType);
$foreignCollection = $property->getCampaignTypes();
$foreignCollection[] = $this;
}
}
The text was updated successfully, but these errors were encountered:
In next generated piece of code $foreignCollection setted, but not used
The text was updated successfully, but these errors were encountered: