/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/AssetMapper/Factory/MappedAssetFactoryInterface.php
19 строк
472 B
Ryan Weaver
[AssetMapper] Add cached asset factory
13 май 2023, 10:16
13 май 2023, 10:16
ce77ed8
Код
Авторство
О чём код?
<?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\Factory; use Symfony\Component\AssetMapper\MappedAsset; interface MappedAssetFactoryInterface { public function createMappedAsset(string $logicalPath, string $sourcePath): ?MappedAsset; }