for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
function get_admin_content_object(string $template, string ...$params): ?\stdClass {
$content = get_model_factory()->createAdminContentObject($params);
$content->template = $template;
return $content;
}