wiki/content/20201112130816-notblank_allownull.md

408 B

date id title
20201112 47dd501e-a567-481a-8d85-5eb1cd0bad15 NotBlank allowNull

Description

The default option is false. If set to true then null values will be considered valid.

Syntax

namespace App\Entity;

use Symfony\Component\Validator\Constraints as Assert;

class SomeEntity
{
    /**
     * @Assert\NotBlank(allowNull = true)
     */
    protected $someProperty;
}