Skip to content

Commit 122bc9f

Browse files
committed
Fix style
1 parent 8058c7c commit 122bc9f

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

tests/Fixtures/TestBundle/Entity/Foo.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,26 +21,28 @@ class Foo
2121
{
2222
/**
2323
* @ORM\Column(type="integer")
24+
*
2425
* @ORM\Id
26+
*
2527
* @ORM\GeneratedValue(strategy="AUTO")
2628
*/
2729
#[
28-
ORM\Column(type: "integer"),
30+
ORM\Column(type: 'integer'),
2931
ORM\Id,
30-
ORM\GeneratedValue(strategy: "AUTO"),
32+
ORM\GeneratedValue(strategy: 'AUTO'),
3133
]
3234
private $id;
3335

3436
/**
3537
* @ORM\Column(type="string")
3638
*/
37-
#[ORM\Column(type: "string")]
39+
#[ORM\Column(type: 'string')]
3840
private $name;
3941

4042
/**
4143
* @ORM\Column(type="json_document", options={"jsonb": true})
4244
*/
43-
#[ORM\Column(type: "json_document", options: ["jsonb" => true])]
45+
#[ORM\Column(type: 'json_document', options: ['jsonb' => true])]
4446
private $misc;
4547

4648
public function getId()

tests/Fixtures/TestBundle/Entity/Product.php

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,27 @@ class Product
2121
{
2222
/**
2323
* @ORM\Column(type="integer")
24+
*
2425
* @ORM\Id
26+
*
2527
* @ORM\GeneratedValue(strategy="AUTO")
2628
*/
2729
#[
28-
ORM\Column(type: "integer"),
30+
ORM\Column(type: 'integer'),
2931
ORM\Id,
30-
ORM\GeneratedValue(strategy: "AUTO"),
32+
ORM\GeneratedValue(strategy: 'AUTO'),
3133
]
3234
public $id;
3335

3436
/**
3537
* @ORM\Column(type="string")
3638
*/
37-
#[ORM\Column(type: "string")]
39+
#[ORM\Column(type: 'string')]
3840
public $name;
3941

4042
/**
4143
* @ORM\Column(type="json_document", options={"jsonb": true}, nullable=true)
4244
*/
43-
#[ORM\Column(type: "json_document", nullable: true, options: ["jsonb" => true])]
45+
#[ORM\Column(type: 'json_document', nullable: true, options: ['jsonb' => true])]
4446
public $attributes;
4547
}

0 commit comments

Comments
 (0)