10000 fabbot · symfony/symfony@d345b7e · GitHub
[go: up one dir, main page]

Skip to content

Commit d345b7e

Browse files
committed
fabbot
1 parent eebfbec commit d345b7e

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

src/Symfony/Component/AssetMapper/AssetMapperCompiler.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111

1212
namespace Symfony\Component\AssetMapper;
1313

14-
use Psr\Container\ContainerInterface;
1514
use Symfony\Component\AssetMapper\Compiler\AssetCompilerInterface;
1615

1716
/**

src/Symfony/Component/AssetMapper/Tests/AssetMapperCompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public function compile(string $content, MappedAsset $asset, AssetMapperInterfac
5959

6060
$compiler = new AssetMapperCompiler(
6161
[$compiler1, $compiler2, $compiler3],
62-
fn() => $this->createMock(AssetMapperInterface::class),
62+
fn () => $this->createMock(AssetMapperInterface::class),
6363
);
6464
$asset = new MappedAsset('foo.js');
6565
$asset->setPublicPathWithoutDigest('/assets/foo.js');

src/Symfony/Component/AssetMapper/Tests/Factory/MappedAssetFactoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private function createFactory(AssetCompilerInterface $extraCompiler = null): Ma
123123

124124
$compiler = new AssetMapperCompiler(
125125
$compilers,
126-
fn() => $this->assetMapper,
126+
fn () => $this->assetMapper,
127127
);
128128

129129
$pathResolver = $this->createMock(PublicAssetsPathResolverInterface::class);

src/Symfony/Component/AssetMapper/Tests/ImportMap/ImportMapManagerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ private function createAssetMapper(PublicAssetsPathResolverInterface $pathResolv
488488

489489
$compiler = new AssetMapperCompiler(
490490
[new JavaScriptImportPathCompiler()],
491-
fn() => $this->assetMapper
491+
fn () => $this->assetMapper
492492
);
493493
$factory = new MappedAssetFactory($pathResolver, $compiler);
494494

0 commit comments

Comments
 (0)
0