Skip to content

Commit f5cb7e0

Browse files
committed
[Validator] remove mention require php 8.1
1 parent 66a2008 commit f5cb7e0

File tree

4 files changed

+0
-4
lines changed

4 files changed

+0
-4
lines changed

reference/constraints/All.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ entry in that array:
2525
2626
use Symfony\Component\Validator\Constraints as Assert;
2727
28-
// IMPORTANT: nested attributes require PHP 8.1 or higher
2928
class User
3029
{
3130
#[Assert\All([

reference/constraints/AtLeastOneOf.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ The following constraints ensure that:
2929
3030
use Symfony\Component\Validator\Constraints as Assert;
3131
32-
// IMPORTANT: nested attributes requires PHP 8.1 or higher
3332
class Student
3433
{
3534
#[Assert\AtLeastOneOf([

reference/constraints/Collection.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ following:
5858
5959
use Symfony\Component\Validator\Constraints as Assert;
6060
61-
// IMPORTANT: nested attributes requires PHP 8.1 or higher
6261
class Author
6362
{
6463
#[Assert\Collection(

reference/constraints/Sequentially.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,6 @@ You can validate each of these constraints sequentially to solve these issues:
4444
use App\Validator\Constraints as AcmeAssert;
4545
use Symfony\Component\Validator\Constraints as Assert;
4646
47-
// IMPORTANT: nested attributes requires PHP 8.1 or higher
4847
class Place
4948
{
5049
#[Assert\Sequentially([

0 commit comments

Comments
 (0)