File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ use Symfony\Component\Routing\Annotation\Route;
69
69
70
70
class DefaultController extends AbstractController
71
71
{
72
- #[Route('/', methods= ['GET'], name= "homepage")]
72
+ #[Route('/', methods: ['GET'], name: "homepage")]
73
73
public function homepage()
74
74
{
75
75
}
@@ -82,7 +82,7 @@ class DefaultController extends AbstractController
82
82
}
83
83
84
84
#[Route('/article/{article_slug}')]
85
- #[Entity('article', expr= 'repository.findOneBySlug(article_slug)')]
85
+ #[Entity('article', expr: 'repository.findOneBySlug(article_slug)')]
86
86
public function article(Article $article)
87
87
{
88
88
}
@@ -159,14 +159,14 @@ use Symfony\Component\Validator\Constraints as Assert;
159
159
160
160
class Foobar
161
161
{
162
- #[Assert\Collection(fields= [
162
+ #[Assert\Collection(fields: [
163
163
'email' => [
164
164
new Assert\NotBlank,
165
165
new Assert\Email,
166
166
],
167
167
'description' => [
168
168
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")
170
170
]
171
171
]]
172
172
protected $contact;
You can’t perform that action at this time.
0 commit comments