Drupal investigation

ChainedRouterInterface.php 496B

12345678910111213141516171819202122
  1. <?php
  2. /*
  3. * This file is part of the Symfony CMF package.
  4. *
  5. * (c) 2011-2015 Symfony CMF
  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 Symfony\Cmf\Component\Routing;
  11. use Symfony\Component\Routing\RouterInterface;
  12. /**
  13. * Interface to combine the VersatileGeneratorInterface with the RouterInterface.
  14. */
  15. interface ChainedRouterInterface extends RouterInterface, VersatileGeneratorInterface
  16. {
  17. }