Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2namespace Apie\Common\Interfaces;
3
4use Stringable;
5
6interface DashboardContentFactoryInterface
7{
8    /**
9     * @param array<string, mixed> $templateParameters
10     */
11    public function create(
12        string $template,
13        array $templateParameters = []
14    ): Stringable|string;
15}