正直代入とreturnを同一行で書くのは辞めた方がいい(分かりにくい)
分かりやすく書くならif文は
if (is_null($instance)) {
$instance = new obj();
}
return $instance;