14 lines
295 B
PHP
14 lines
295 B
PHP
<?php
|
|
|
|
namespace App\Framework\View\Caching;
|
|
|
|
class TemplateContext
|
|
{
|
|
public function __construct(
|
|
public readonly string $template,
|
|
public readonly array $data,
|
|
public readonly ?string $controllerClass = null,
|
|
public readonly array $metadata = []
|
|
) {}
|
|
}
|