Skip to content

Commit

Permalink
chore: Code style
Browse files Browse the repository at this point in the history
  • Loading branch information
ambroisemaupate committed Jul 2, 2024
1 parent b80548d commit 67a825d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/RoadizCoreBundle/src/Entity/CustomFormField.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
use Doctrine\Common\Collections\Collection;
use Doctrine\ORM\Mapping as ORM;
use JMS\Serializer\Annotation as Serializer;
use RZ\Roadiz\CoreBundle\Repository\CustomFormFieldRepository;
use Symfony\Bridge\Doctrine\Validator\Constraints\UniqueEntity;
use Symfony\Component\Serializer\Annotation as SymfonySerializer;
use RZ\Roadiz\Core\AbstractEntities\AbstractField;
Expand All @@ -17,7 +18,7 @@
* custom data structure.
*/
#[
ORM\Entity(repositoryClass: "RZ\Roadiz\CoreBundle\Repository\CustomFormFieldRepository"),
ORM\Entity(repositoryClass: CustomFormFieldRepository::class),
ORM\Table(name: "custom_form_fields"),
ORM\UniqueConstraint(columns: ["name", "custom_form_id"]),
ORM\Index(columns: ["position"]),
Expand Down

0 comments on commit 67a825d

Please sign in to comment.