mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 19:46:23 +00:00
22 lines
318 B
Markdown
22 lines
318 B
Markdown
|
---
|
||
|
id: 4e20e5e5-06b6-4280-9cd0-7b08585a762b
|
||
|
title: Symfony JSON Constraint
|
||
|
---
|
||
|
|
||
|
# Syntax
|
||
|
|
||
|
``` php
|
||
|
// src/Entity/Book.php
|
||
|
namespace App\Entity;
|
||
|
|
||
|
use Symfony\Component\Validator\Constraints as Assert;
|
||
|
|
||
|
class Book
|
||
|
{
|
||
|
/**
|
||
|
* @Assert\Json(message = "This is not valid JSON")
|
||
|
*/
|
||
|
protected $chapters;
|
||
|
}
|
||
|
```
|