Beispiel #1
0
 /**
  * Initializes the collProductHighlighteds collection.
  *
  * By default this just sets the collProductHighlighteds collection to an empty array (like clearcollProductHighlighteds());
  * however, you may wish to override this method in your stub class to provide setting appropriate
  * to your application -- for example, setting the initial array to the values stored in database.
  *
  * @param      boolean $overrideExisting If set to true, the method call initializes
  *                                        the collection even if it is not empty
  *
  * @return void
  */
 public function initProductHighlighteds($overrideExisting = true)
 {
     if (null !== $this->collProductHighlighteds && !$overrideExisting) {
         return;
     }
     $collectionClassName = ProductHighlightedTableMap::getTableMap()->getCollectionClassName();
     $this->collProductHighlighteds = new $collectionClassName();
     $this->collProductHighlighteds->setModel('\\App\\Propel\\ProductHighlighted');
 }