ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy::setName PHP Méthode

setName() public méthode

public setName ( $name )
    public function setName($name)
    {
        $this->name = $name;
    }

Usage Example

Exemple #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();
 }