Skip to content

Commit 8861512

Browse files
committed
Fixing incorrect namespace
1 parent 31f1f15 commit 8861512

File tree

6 files changed

+6
-8
lines changed

6 files changed

+6
-8
lines changed

src/Symfony/Bundle/FrameworkBundle/Resources/config/asset_mapper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@
3232
use Symfony\Component\AssetMapper\ImportMap\ImportMapConfigReader;
3333
use Symfony\Component\AssetMapper\ImportMap\ImportMapManager;
3434
use Symfony\Component\AssetMapper\ImportMap\ImportMapRenderer;
35+
use Symfony\Component\AssetMapper\ImportMap\ImportMapVersionChecker;
3536
use Symfony\Component\AssetMapper\ImportMap\RemotePackageDownloader;
3637
use Symfony\Component\AssetMapper\ImportMap\Resolver\JsDelivrEsmResolver;
3738
use Symfony\Component\AssetMapper\MapperAwareAssetPackage;
3839
use Symfony\Component\AssetMapper\Path\PublicAssetsPathResolver;
39-
use Symfony\Component\AssetMapper\Tests\ImportMap\ImportMapVersionChecker;
4040
use Symfony\Component\HttpKernel\Event\RequestEvent;
4141

4242
return static function (ContainerConfigurator $container) {

src/Symfony/Component/AssetMapper/Command/ImportMapRequireCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313

1414
use Symfony\Component\AssetMapper\ImportMap\ImportMapEntry;
1515
use Symfony\Component\AssetMapper\ImportMap\ImportMapManager;
16+
use Symfony\Component\AssetMapper\ImportMap\ImportMapVersionChecker;
1617
use Symfony\Component\AssetMapper\ImportMap\PackageRequireOptions;
17-
use Symfony\Component\AssetMapper\Tests\ImportMap\ImportMapVersionChecker;
1818
use Symfony\Component\Console\Attribute\AsCommand;
1919
use Symfony\Component\Console\Command\Command;
2020
use Symfony\Component\Console\Input\InputArgument;

src/Symfony/Component/AssetMapper/Command/ImportMapUpdateCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313

1414
use Symfony\Component\AssetMapper\ImportMap\ImportMapEntry;
1515
use Symfony\Component\AssetMapper\ImportMap\ImportMapManager;
16-
use Symfony\Component\AssetMapper\Tests\ImportMap\ImportMapVersionChecker;
16+
use Symfony\Component\AssetMapper\ImportMap\ImportMapVersionChecker;
1717
use Symfony\Component\Console\Attribute\AsCommand;
1818
use Symfony\Component\Console\Command\Command;
1919
use Symfony\Component\Console\Input\InputArgument;

src/Symfony/Component/AssetMapper/Command/VersionProblemCommandTrait.php

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

1212
namespace Symfony\Component\AssetMapper\Command;
1313

14-
use Symfony\Component\AssetMapper\Tests\ImportMap\ImportMapVersionChecker;
14+
use Symfony\Component\AssetMapper\ImportMap\ImportMapVersionChecker;
1515
use Symfony\Component\Console\Output\OutputInterface;
1616

1717
/**

src/Symfony/Component/AssetMapper/Tests/ImportMap/ImportMapVersionChecker.php renamed to src/Symfony/Component/AssetMapper/ImportMap/ImportMapVersionChecker.php

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,10 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\AssetMapper\Tests\ImportMap;
12+
namespace Symfony\Component\AssetMapper\ImportMap;
1313

1414
use Composer\Semver\Semver;
1515
use Symfony\Component\AssetMapper\Exception\RuntimeException;
16-
use Symfony\Component\AssetMapper\ImportMap\ImportMapConfigReader;
17-
use Symfony\Component\AssetMapper\ImportMap\RemotePackageDownloader;
1816
use Symfony\Component\HttpClient\HttpClient;
1917
use Symfony\Contracts\HttpClient\Exception\HttpExceptionInterface;
2018
use Symfony\Contracts\HttpClient\HttpClientInterface;

src/Symfony/Component/AssetMapper/Tests/ImportMap/PackageVersionProblem.php renamed to src/Symfony/Component/AssetMapper/ImportMap/PackageVersionProblem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* file that was distributed with this source code.
1010
*/
1111

12-
namespace Symfony\Component\AssetMapper\Tests\ImportMap;
12+
namespace Symfony\Component\AssetMapper\ImportMap;
1313

1414
class PackageVersionProblem
1515
{

0 commit comments

Comments
 (0)