initial commit
This commit is contained in:
31
vendor/symfony/framework-bundle/Resources/config/routing/errors.php
vendored
Normal file
31
vendor/symfony/framework-bundle/Resources/config/routing/errors.php
vendored
Normal file
@@ -0,0 +1,31 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
||||
use Symfony\Component\Routing\Loader\XmlFileLoader;
|
||||
|
||||
return function (RoutingConfigurator $routes): void {
|
||||
foreach (debug_backtrace() as $trace) {
|
||||
if (isset($trace['object']) && $trace['object'] instanceof XmlFileLoader && 'doImport' === $trace['function']) {
|
||||
if (__DIR__ === dirname(realpath($trace['args'][3]))) {
|
||||
trigger_deprecation('symfony/routing', '7.3', 'The "errors.xml" routing configuration file is deprecated, import "errors.php" instead.');
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$routes->add('_preview_error', '/{code}.{_format}')
|
||||
->controller('error_controller::preview')
|
||||
->defaults(['_format' => 'html'])
|
||||
->requirements(['code' => '\d+'])
|
||||
;
|
||||
};
|
||||
8
vendor/symfony/framework-bundle/Resources/config/routing/errors.xml
vendored
Normal file
8
vendor/symfony/framework-bundle/Resources/config/routing/errors.xml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<import resource="errors.php" type="php" />
|
||||
</routes>
|
||||
30
vendor/symfony/framework-bundle/Resources/config/routing/webhook.php
vendored
Normal file
30
vendor/symfony/framework-bundle/Resources/config/routing/webhook.php
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
<?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.
|
||||
*/
|
||||
|
||||
use Symfony\Component\Routing\Loader\Configurator\RoutingConfigurator;
|
||||
use Symfony\Component\Routing\Loader\XmlFileLoader;
|
||||
|
||||
return function (RoutingConfigurator $routes): void {
|
||||
foreach (debug_backtrace() as $trace) {
|
||||
if (isset($trace['object']) && $trace['object'] instanceof XmlFileLoader && 'doImport' === $trace['function']) {
|
||||
if (__DIR__ === dirname(realpath($trace['args'][3]))) {
|
||||
trigger_deprecation('symfony/routing', '7.3', 'The "webhook.xml" routing configuration file is deprecated, import "webhook.php" instead.');
|
||||
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
$routes->add('_webhook_controller', '/{type}')
|
||||
->controller('webhook.controller::handle')
|
||||
->requirements(['type' => '.+'])
|
||||
;
|
||||
};
|
||||
8
vendor/symfony/framework-bundle/Resources/config/routing/webhook.xml
vendored
Normal file
8
vendor/symfony/framework-bundle/Resources/config/routing/webhook.xml
vendored
Normal file
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" ?>
|
||||
|
||||
<routes xmlns="http://symfony.com/schema/routing"
|
||||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||||
xsi:schemaLocation="http://symfony.com/schema/routing https://symfony.com/schema/routing/routing-1.0.xsd">
|
||||
|
||||
<import resource="webhook.php" type="php" />
|
||||
</routes>
|
||||
Reference in New Issue
Block a user