From b513c1593b6e43c52b218d906ea2e06127d2d14d Mon Sep 17 00:00:00 2001 From: Nyholm Date: Sat, 17 Oct 2020 09:10:59 +0200 Subject: [PATCH] Fixed use statement --- reference/constraints/Compound.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reference/constraints/Compound.rst b/reference/constraints/Compound.rst index 8552058708c..6e0ab5db139 100644 --- a/reference/constraints/Compound.rst +++ b/reference/constraints/Compound.rst @@ -26,7 +26,7 @@ you can create your own named set or requirements to be reused consistently ever // src/Validator/Constraints/PasswordRequirements.php namespace App\Validator\Constraints; - use Symfony\Component\Validator\Compound; + use Symfony\Component\Validator\Constraints\Compound; use Symfony\Component\Validator\Constraints as Assert; /**