404

[ Avaa Bypassed ]




Upload:

Command:

botdev@3.21.34.214: ~ $
<?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\Routing\Matcher\Dumper;

use Symfony\Component\Routing\RouteCollection;

/**
 * MatcherDumper is the abstract class for all built-in matcher dumpers.
 *
 * @author Fabien Potencier <fabien@symfony.com>
 */
abstract class MatcherDumper implements MatcherDumperInterface
{
    private $routes;

    public function __construct(RouteCollection $routes)
    {
        $this->routes = $routes;
    }

    /**
     * {@inheritdoc}
     */
    public function getRoutes()
    {
        return $this->routes;
    }
}

Filemanager

Name Type Size Permission Actions
DumperCollection.php File 3.4 KB 0644
DumperRoute.php File 1.01 KB 0644
MatcherDumper.php File 775 B 0644
MatcherDumperInterface.php File 988 B 0644
PhpMatcherDumper.php File 14.82 KB 0644
StaticPrefixCollection.php File 6.19 KB 0644