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.

LazyLoaderInterface.php 748B

12345678910111213141516171819202122232425262728293031
  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. }