Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

31 rinda
765B

  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;
  11. use Composer\Package\CompletePackageInterface;
  12. use Fxp\Composer\AssetPlugin\Package\Loader\LazyLoaderInterface;
  13. /**
  14. * Interface for lazy loading package.
  15. *
  16. * @author François Pluchino <francois.pluchino@gmail.com>
  17. */
  18. interface LazyPackageInterface extends CompletePackageInterface
  19. {
  20. /**
  21. * Sets the lazy loader.
  22. *
  23. * @param LazyLoaderInterface $lazyLoader
  24. */
  25. public function setLoader(LazyLoaderInterface $lazyLoader);
  26. }