Flag of Ukraine
SymfonyCasts stands united with the people of Ukraine
Next Chapter

Challenge #1 of 1


Q: 

How could we refactor this old way of defining an entity's property to use PHP attributes so that it can be null at initialization?

/**
 * @var string
 * @ORM\Column(type="string")
 */
private $name;

userVoice