mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 11:36:23 +00:00
393 B
393 B
id | title |
---|---|
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;
}