WIP: Symfony 6 project remake #2

Draft
skobkin wants to merge 103 commits from symfony6_remake into master
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 98f3634cf1 - Show all commits

View file

@ -65,7 +65,7 @@ class Comment
$this->children = new ArrayCollection();
}
public function getId(): int
public function getId(): ?int
{
return $this->id;
}

View file

@ -25,7 +25,7 @@ class File
$this->remoteUrl = $remoteUrl;
}
public function getId(): int
public function getId(): ?int
{
return $this->id;
}