Skip to content

Commit 2c1d339

Browse files
authored
Merge pull request #90 from maximehuran/2.x
2 parents 46308bc + 015590a commit 2c1d339

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/Entity/PageTranslation.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ class PageTranslation extends AbstractTranslation implements PageTranslationInte
1919
{
2020
protected ?int $id = null;
2121

22-
protected ?string $title;
22+
protected ?string $title = null;
2323

24-
protected ?string $content;
24+
protected ?string $content = null;
2525

2626
protected ?string $slug = null;
2727

28-
protected ?string $metaTitle;
28+
protected ?string $metaTitle = null;
2929

30-
protected ?string $metaKeywords;
30+
protected ?string $metaKeywords = null;
3131

32-
protected ?string $metaDescription;
32+
protected ?string $metaDescription = null;
3333

34-
protected ?string $metaImage;
34+
protected ?string $metaImage = null;
3535

3636
public function getId(): ?int
3737
{

0 commit comments

Comments
 (0)