$templateTitle = 'some_template'; // adjust this
$templateContent = '<xf:comment>Your template code</xf:comment>'; // adjust this
$template = \XF::em()->findOne(\XF\Entity\Template::class, [
'style_id' => 0,
'type' => 'public',
'title' => $templateTitle,
);
$template->template = $templateContent;
$template->save();