/**
  * @param SyndicationDistributionProfile $object_to_fill
  * @param array $props_to_skip
  * @return genericSyndicationFeed
  */
 public function toInsertableObject($object_to_fill = null, $props_to_skip = array())
 {
     if (is_null($object_to_fill)) {
         $object_to_fill = new genericSyndicationFeed();
     }
     kSyndicationFeedManager::validateXsl($this->xslt);
     return parent::toInsertableObject($object_to_fill, $props_to_skip);
 }