We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 46308bc + 015590a commit 2c1d339Copy full SHA for 2c1d339
src/Entity/PageTranslation.php
@@ -19,19 +19,19 @@ class PageTranslation extends AbstractTranslation implements PageTranslationInte
19
{
20
protected ?int $id = null;
21
22
- protected ?string $title;
+ protected ?string $title = null;
23
24
- protected ?string $content;
+ protected ?string $content = null;
25
26
protected ?string $slug = null;
27
28
- protected ?string $metaTitle;
+ protected ?string $metaTitle = null;
29
30
- protected ?string $metaKeywords;
+ protected ?string $metaKeywords = null;
31
32
- protected ?string $metaDescription;
+ protected ?string $metaDescription = null;
33
34
- protected ?string $metaImage;
+ protected ?string $metaImage = null;
35
36
public function getId(): ?int
37
0 commit comments