ApiPlatform\Core\Tests\Fixtures\TestBundle\Entity\FileConfigDummy::setName PHP Method

setName() public method

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

Usage Example

Esempio n. 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();
 }