Skip to content

Commit

Permalink
CS
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Nov 13, 2023
1 parent e30a1af commit 68efd9e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@

declare(strict_types=1);

/*
* This file is part of Contao.
*
* (c) Leo Feyer
*
* @license LGPL-3.0-or-later
*/

namespace App\Controller;

use Symfony\Component\HttpFoundation\Response;
Expand Down
4 changes: 2 additions & 2 deletions manager-bundle/tests/Routing/RouteLoaderTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function testLoadsRoutesYaml(): void
$loader
->expects($this->once())
->method('load')
->with(dirname(__DIR__).'/Fixtures/Routing/WithRoutingYaml/config/routes.yaml')
->with(\dirname(__DIR__).'/Fixtures/Routing/WithRoutingYaml/config/routes.yaml')
;

$loaderResolver = $this->createMock(LoaderResolverInterface::class);
Expand Down Expand Up @@ -74,7 +74,7 @@ public function testLoadsAppController(): void
$loader
->expects($this->once())
->method('load')
->with(dirname(__DIR__).'/Fixtures/Routing/WithAppController/src/Controller')
->with(\dirname(__DIR__).'/Fixtures/Routing/WithAppController/src/Controller')
;

$loaderResolver = $this->createMock(LoaderResolverInterface::class);
Expand Down

0 comments on commit 68efd9e

Please sign in to comment.