14 lines
243 B
PHP
14 lines
243 B
PHP
<?php
|
|
|
|
namespace App\Twig\Runtime;
|
|
|
|
use Twig\Extension\RuntimeExtensionInterface;
|
|
|
|
class ViteAssetExtensionRuntime implements RuntimeExtensionInterface
|
|
{
|
|
public function __construct()
|
|
{
|
|
// Inject dependencies if needed
|
|
}
|
|
}
|