Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

32 lines
748B

  1. <?php
  2. /*
  3. * This file is part of the Fxp Composer Asset Plugin package.
  4. *
  5. * (c) François Pluchino <francois.pluchino@gmail.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Fxp\Composer\AssetPlugin\Package\Loader;
  11. use Fxp\Composer\AssetPlugin\Package\LazyPackageInterface;
  12. /**
  13. * Interface for lazy loader package.
  14. *
  15. * @author François Pluchino <francois.pluchino@gmail.com>
  16. */
  17. interface LazyLoaderInterface
  18. {
  19. /**
  20. * Loads the real package.
  21. *
  22. * @param LazyPackageInterface $package
  23. *
  24. * @return \Composer\Package\CompletePackageInterface|false
  25. */
  26. public function load(LazyPackageInterface $package);
  27. }