/**
  * Load data fixtures with the passed EntityManager
  *
  * @param ObjectManager $manager
  */
 public function load(ObjectManager $manager)
 {
     $catalogCSGMKT = new CatalogEntity();
     $catalogCSGMKT->setCatalogName('CSGMKT');
     $catalogCSGMKT->setStoreId(1);
     $catalogCSGMKT->setShopifyCollectionId(0);
     $manager->persist($catalogCSGMKT);
     $manager->flush();
 }