for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Zenstruck\Foundry\Tests\Fixtures\Entity;
use Doctrine\ORM\Mapping as ORM;
/**
* @ORM\Embeddable
*/
final class Address
{
* @ORM\Column(type="string", nullable=true)
private $value;
public function getValue()
return $this->value;
}
public function setValue($value)
$this->value = $value;