mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
410 B
410 B
date | id | title |
---|---|---|
2020-11-12 | 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;
}