/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/AssetMapper/ImportMap/JavaScriptImport.php
32 строки
1 KB
Ryan Weaver
[AssetMapper] Avoid storing & caching MappedAsset objects
10 ноя 2023, 05:31
10 ноя 2023, 05:31
bb5ef88
Код
Авторство
О чём код?
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\AssetMapper\ImportMap; /** * Represents a module that was imported by a JavaScript file. */ final class JavaScriptImport { /** * @param string $importName The name of the import needed in the importmap, e.g. "/foo.js" or "react" * @param string $assetLogicalPath Logical path to the mapped ass that was imported * @param bool $addImplicitlyToImportMap Whether this import should be added to the importmap automatically */ public function __construct( public readonly string $importName, public readonly string $assetLogicalPath, public readonly string $assetSourcePath, public readonly bool $isLazy = false, public bool $addImplicitlyToImportMap = false, ) { } }