IteratorResourceInterface.php 493B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of the Assetic package, an OpenSky project.
  4. *
  5. * (c) 2010-2012 OpenSky Project Inc
  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 Assetic\Factory\Resource;
  11. /**
  12. * A resource is something formulae can be loaded from.
  13. *
  14. * @author Kris Wallsmith <kris.wallsmith@gmail.com>
  15. */
  16. interface IteratorResourceInterface extends ResourceInterface, \IteratorAggregate
  17. {
  18. }