vendor/symfony/webpack-encore-bundle/src/Asset/EntrypointLookupCollectionInterface.php line 21

Open in your IDE?
  1. <?php
  2. /*
  3. * This file is part of the Symfony WebpackEncoreBundle package.
  4. * (c) Fabien Potencier <fabien@symfony.com>
  5. * For the full copyright and license information, please view the LICENSE
  6. * file that was distributed with this source code.
  7. */
  8. namespace Symfony\WebpackEncoreBundle\Asset;
  9. use Symfony\WebpackEncoreBundle\Exception\UndefinedBuildException;
  10. interface EntrypointLookupCollectionInterface
  11. {
  12. /**
  13. * Retrieve the EntrypointLookupInterface for the given build.
  14. *
  15. * @throws UndefinedBuildException if the build does not exist
  16. */
  17. public function getEntrypointLookup(string $buildName = null): EntrypointLookupInterface;
  18. }