setCategory() public method

Sets the category for this storage location.
public setCategory ( StorageLocationCategory $category ) : void
$category StorageLocationCategory The category
return void
 public function load(ObjectManager $manager)
 {
     $storageLocation = new StorageLocation();
     $storageLocation->setName("test");
     $storageLocation->setCategory($this->getReference("storagelocationcategory.first"));
     $manager->persist($storageLocation);
     $manager->flush();
     $this->addReference("storagelocation.first", $storageLocation);
 }
 public function load(ObjectManager $manager)
 {
     $storageLocation = new StorageLocation();
     $storageLocation->setName('test');
     $storageLocation->setCategory($this->getReference('storagelocationcategory.first'));
     $storageLocation2 = new StorageLocation();
     $storageLocation2->setName('test2');
     $storageLocation2->setCategory($this->getReference('storagelocationcategory.second'));
     $manager->persist($storageLocation);
     $manager->persist($storageLocation2);
     $manager->flush();
     $this->addReference('storagelocation.first', $storageLocation);
     $this->addReference('storagelocation.second', $storageLocation2);
 }