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 719711b + 8d3a14d commit 2c250ccCopy full SHA for 2c250cc
src/Entity/HomepageTranslation.php
@@ -17,19 +17,19 @@
17
18
class HomepageTranslation extends AbstractTranslation implements HomepageTranslationInterface
19
{
20
- protected int $id;
+ protected ?int $id = null;
21
22
- protected ?string $name;
+ protected ?string $name = null;
23
24
- protected ?string $content;
+ protected ?string $content = null;
25
26
- protected ?string $metaTitle;
+ protected ?string $metaTitle = null;
27
28
- protected ?string $metaKeywords;
+ protected ?string $metaKeywords = null;
29
30
- protected ?string $metaDescription;
+ protected ?string $metaDescription = null;
31
32
- protected ?string $metaImage;
+ protected ?string $metaImage = null;
33
34
public function getId(): ?int
35
0 commit comments