mirror of
https://github.com/Sylius/Sylius.git
synced 2026-07-14 09:02:12 +00:00
26 lines
483 B
PHP
26 lines
483 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Sylius package.
|
|
*
|
|
* (c) Sylius Sp. z o.o.
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
/**
|
|
* @internal
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
use Symfony\Component\Routing\RouteCollection;
|
|
|
|
trigger_deprecation(
|
|
'sylius/sylius',
|
|
'1.3',
|
|
'Importing files from Sylius/Sylius\'s "app/config" directory is deprecated.',
|
|
);
|
|
|
|
return new RouteCollection();
|