Skip to content

Commit

Permalink
Merge branch '4.5' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
barw4 committed Jul 24, 2023
2 parents 3522631 + e004024 commit 76d806f
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/bundle/Resources/config/services.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,11 @@ services:
decorates: Ibexa\Bundle\Core\DependencyInjection\Configuration\ChainConfigResolver
arguments:
$chainConfigResolver: '@.inner'

Ibexa\CompatibilityLayer\Event\Subscriber\RoutingListener:
arguments:
$configResolver: '@ibexa.config.resolver'
$urlAliasRouter: '@Ibexa\CompatibilityLayer\Routing\UrlAliasRouter'
$urlAliasGenerator: '@Ibexa\Core\MVC\Symfony\Routing\Generator\UrlAliasGenerator'
tags:
- { name: kernel.event_subscriber }
15 changes: 15 additions & 0 deletions src/lib/Event/Subscriber/RoutingListener.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
declare(strict_types=1);

namespace Ibexa\CompatibilityLayer\Event\Subscriber;

use Ibexa\Bundle\Core\EventListener\RoutingListener as CoreRoutingListener;

final class RoutingListener extends CoreRoutingListener
{
}

0 comments on commit 76d806f

Please sign in to comment.