Strange, but couldn't find this on SO, maybe someone can help.
What does this syntax mean in PHP when we have a colon followed by a question mark and then another class name when a method is being defined?
public function someMethod(): ?SomeClass
Full function just in case with oriignal names
public function getParentProject(): ?ParentProjectTester
{
return $this->parentProject;
}