PHP 8.3.31
Preview: ContextualizedDumper.php Size: 1.05 KB
/home/getspomw/royalsquad.us/vendor/symfony/var-dumper/Dumper/ContextualizedDumper.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));
    }
}

Directory Contents

Dirs: 1 × Files: 7

Name Size Perms Modified Actions
- drwxrwxrwx 2026-04-19 15:40:23
Edit Download
5.94 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
23.20 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
1.05 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
548 B lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
5.38 KB lrw-r--r-- 2026-04-26 10:21:01
Edit Download
33.77 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download
1.54 KB lrw-rw-rw- 2025-09-17 06:53:24
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).