mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-21 06:07:50 +09:00
Updates to vendors etc
This commit is contained in:
@@ -23,17 +23,16 @@ use Symfony\Component\HttpKernel\Fragment\FragmentHandler;
|
||||
*/
|
||||
class LazyLoadingFragmentHandler extends FragmentHandler
|
||||
{
|
||||
private ContainerInterface $container;
|
||||
|
||||
/**
|
||||
* @var array<string, bool>
|
||||
*/
|
||||
private array $initialized = [];
|
||||
|
||||
public function __construct(ContainerInterface $container, RequestStack $requestStack, bool $debug = false)
|
||||
{
|
||||
$this->container = $container;
|
||||
|
||||
public function __construct(
|
||||
private ContainerInterface $container,
|
||||
RequestStack $requestStack,
|
||||
bool $debug = false,
|
||||
) {
|
||||
parent::__construct($requestStack, [], $debug);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user