Esempio n. 1
0
 /**
  * @return $this
  */
 protected function createStore()
 {
     $store = new Store();
     $store->setName('demo store');
     $store->setChannel($this->integration);
     $store->setCode(1);
     $store->setWebsite($this->website);
     $store->setOriginId(1);
     $this->em->persist($store);
     $this->store = $store;
     return $this;
 }