DX: Remove deprecation on $this->get inside controller

This commit is contained in:
2023-01-13 16:15:58 +01:00
parent 164beb3ca9
commit 6bba6f68b3
2 changed files with 14 additions and 7 deletions

View File

@@ -356,7 +356,9 @@ class SocialIssue
{
$this->parent = $parent;
$parent->addChild($this);
if (null !== $parent) {
$parent->addChild($this);
}
return $this;
}