mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
26 lines
393 B
Markdown
26 lines
393 B
Markdown
---
|
|
id: 47dd501e-a567-481a-8d85-5eb1cd0bad15
|
|
title: NotBlank allowNull
|
|
---
|
|
|
|
# Description
|
|
|
|
The default option is `false`. If set to true then `null` values will be
|
|
considered valid.
|
|
|
|
# Syntax
|
|
|
|
``` php
|
|
namespace App\Entity;
|
|
|
|
use Symfony\Component\Validator\Constraints as Assert;
|
|
|
|
class SomeEntity
|
|
{
|
|
/**
|
|
* @Assert\NotBlank(allowNull = true)
|
|
*/
|
|
protected $someProperty;
|
|
}
|
|
|
|
```
|