We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
$fid
App\Entity\Post\Content\PostContent
1 parent 183166b commit 0b0959dCopy full SHA for 0b0959d
1 file changed
be/src/Entity/Post/Content/PostContent.php
@@ -9,21 +9,9 @@
9
#[ORM\MappedSuperclass]
10
abstract class PostContent
11
{
12
- #[ORM\Column] private int $fid;
13
/** @var ?resource */
14
#[ORM\Column] private $protoBufBytes;
15
16
- public function getFid(): int
17
- {
18
- return $this->fid;
19
- }
20
-
21
- public function setFid(int $fid): self
22
23
- $this->fid = $fid;
24
- return $this;
25
26
27
public function getContent(): ?array
28
29
return BlobResourceGetter::protoBufWrapper($this->protoBufBytes, PostContentWrapper::class);
0 commit comments