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

Skip to content

Commit da1cc81

Browse files
committed
fabbot
1 parent d407dfa commit da1cc81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/Symfony/Component/AssetMapper/Tests/Compiler/CssAssetUrlCompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public function testCompile(string $sourceLogicalName, string $input, string $ex
3030
$this->assertSame($expectedOutput, $compiler->compile($input, $asset, $this->createAssetMapper()));
3131
$assetDependencyLogicalPaths = array_map(fn (AssetDependency $dependency) => $dependency->asset->logicalPath, $asset->getDependencies());
3232
$this->assertSame($expectedDependencies, $assetDependencyLogicalPaths);
33-
if (count($expectedDependencies) > 0) {
33+
if (\count($expectedDependencies) > 0) {
3434
$this->assertTrue($asset->getDependencies()[0]->isContentDependency);
3535
}
3636
}

src/Symfony/Component/AssetMapper/Tests/Compiler/SourceMappingUrlsCompilerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public function testCompile(string $sourceLogicalName, string $input, string $ex
5858
$this->assertSame($expectedOutput, $compiler->compile($input, $asset, $assetMapper));
5959
$assetDependencyLogicalPaths = array_map(fn (AssetDependency $dependency) => $dependency->asset->logicalPath, $asset->getDependencies());
6060
$this->assertSame($expectedDependencies, $assetDependencyLogicalPaths);
61-
if (count($expectedDependencies) > 0) {
61+
if (\count($expectedDependencies) > 0) {
6262
$this->assertTrue($asset->getDependencies()[0]->isContentDependency);
6363
}
6464
}

0 commit comments

Comments
 (0)
0