mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-23 18:54:24 +00:00
Fixed nullable content for NewsItem in setContent signature #392
This commit is contained in:
parent
bdf1cf71ba
commit
af74f7860b
7
.changes/unreleased/Fixed-20250619-170142.yaml
Normal file
7
.changes/unreleased/Fixed-20250619-170142.yaml
Normal file
@ -0,0 +1,7 @@
|
||||
kind: Fixed
|
||||
body: |
|
||||
Allow null and cast as string to setContent method for NewsItem
|
||||
time: 2025-06-19T17:01:42.125730402+02:00
|
||||
custom:
|
||||
Issue: "392"
|
||||
SchemaChange: No schema change
|
@ -70,9 +70,9 @@ class NewsItem implements TrackCreationInterface, TrackUpdateInterface
|
||||
return $this->content;
|
||||
}
|
||||
|
||||
public function setContent(string $content): void
|
||||
public function setContent(string|null $content): void
|
||||
{
|
||||
$this->content = $content;
|
||||
$this->content = (string) $content;
|
||||
}
|
||||
|
||||
public function getStartDate(): ?\DateTimeImmutable
|
||||
|
Loading…
x
Reference in New Issue
Block a user