setName() public method

public setName ( $name )
Example #1
0
 /**
  * @Given there is a FileConfigDummy object
  */
 public function thereIsAFileConfigDummyObject()
 {
     $fileConfigDummy = new FileConfigDummy();
     $fileConfigDummy->setName('ConfigDummy');
     $fileConfigDummy->setFoo('Foo');
     $this->manager->persist($fileConfigDummy);
     $this->manager->flush();
 }