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 491d744 + c3b7537 commit ea3f1b0Copy full SHA for ea3f1b0
src/Entity/Block.php
@@ -30,10 +30,7 @@ class Block implements BlockInterface
30
31
protected ?int $id = null;
32
33
- /**
34
- * @var string|null
35
- */
36
- protected $code;
+ protected ?string $code = null;
37
38
/**
39
* @var DateTimeInterface|null
src/Entity/BlockTranslation.php
@@ -17,9 +17,9 @@ class BlockTranslation extends AbstractTranslation implements BlockTranslationIn
17
{
18
19
20
- protected ?string $name;
+ protected ?string $name = null;
21
22
- protected ?string $content;
+ protected ?string $content = null;
23
24
public function getId(): ?int
25
0 commit comments