Skip to content

Commit fec6b68

Browse files
authored
Merge pull request #400 from benjaminmal/fix-php8-named-arguments
Fix named arguments
2 parents 4827473 + 9fa36d0 commit fec6b68

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

content/blog/dev/les-attributs-php-8-dans-symfony.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ use Symfony\Component\Routing\Annotation\Route;
6969

7070
class DefaultController extends AbstractController
7171
{
72-
#[Route('/', methods=['GET'], name="homepage")]
72+
#[Route('/', methods: ['GET'], name: "homepage")]
7373
public function homepage()
7474
{
7575
}
@@ -82,7 +82,7 @@ class DefaultController extends AbstractController
8282
}
8383

8484
#[Route('/article/{article_slug}')]
85-
#[Entity('article', expr='repository.findOneBySlug(article_slug)')]
85+
#[Entity('article', expr: 'repository.findOneBySlug(article_slug)')]
8686
public function article(Article $article)
8787
{
8888
}
@@ -159,14 +159,14 @@ use Symfony\Component\Validator\Constraints as Assert;
159159

160160
class Foobar
161161
{
162-
#[Assert\Collection(fields=[
162+
#[Assert\Collection(fields: [
163163
'email' => [
164164
new Assert\NotBlank,
165165
new Assert\Email,
166166
],
167167
'description' => [
168168
new Assert\NotBlank,
169-
new Assert\Length(min=10, max=255, message="Lorem ipsum")
169+
new Assert\Length(min: 10, max: 255, message: "Lorem ipsum")
170170
]
171171
]]
172172
protected $contact;

0 commit comments

Comments
 (0)