8000 [Validator] Fix missing semicolon for `Choice` constraint documentation · Pull Request #19379 · symfony/symfony-docs · GitHub
[go: up one dir, main page]

Skip to content

[Validator] Fix missing semicolon for Choice constraint documentation #19379

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from Jan 4, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update Choice.rst
Add missing semicolon
  • Loading branch information
Valentin GRAGLIA authored Jan 4, 2024
commit 6c69f1aeaa8347e78f0bd2ebb8d2dde9d52c1c4f
2 changes: 1 addition & 1 deletion reference/constraints/Choice.rst
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ you can pass the class name and the method as an array.
// src/Entity/Author.php
namespace App\Entity;

use App\Entity\Genre
use App\Entity\Genre;
use Symfony\Component\Validator\Constraints as Assert;

class Author
Expand Down
0