Fixed null pointer exception on summit serializer

Change-Id: I39140e24db14c7ee6bb403e056497967c76143db
This commit is contained in:
smarcet 2019-05-14 10:40:41 -03:00
parent 23940355f6
commit 0ea6ebee77
1 changed files with 2 additions and 2 deletions

View File

@ -2408,9 +2408,9 @@ SQL;
} }
/** /**
* @return string * @return string|null
*/ */
public function getRawSlug():string{ public function getRawSlug():?string{
return $this->slug; return $this->slug;
} }