Remove orphaned TestObjectRouteLoader fixture.

This commit is contained in:
Alexander M. Turek 2019-08-16 20:14:00 +02:00
parent 5f401c9e06
commit 9f76c5d6d2

View File

@ -1,24 +0,0 @@
<?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\Tests\Fixtures;
use Symfony\Component\Routing\Loader\ObjectRouteLoader;
class TestObjectRouteLoader extends ObjectRouteLoader
{
public $loaderMap = [];
protected function getServiceObject($id)
{
return $this->loaderMap[$id] ?? null;
}
}