RouteBuilderInterface.php 705 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. /*
  3. * This file is part of the Sonata Project package.
  4. *
  5. * (c) Thomas Rabaix <thomas.rabaix@sonata-project.org>
  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 Sonata\AdminBundle\Builder;
  11. use Sonata\AdminBundle\Admin\AdminInterface;
  12. use Sonata\AdminBundle\Route\RouteCollection;
  13. /**
  14. * Interface RouteBuilderInterface.
  15. *
  16. * @author Thomas Rabaix <thomas.rabaix@sonata-project.org>
  17. */
  18. interface RouteBuilderInterface
  19. {
  20. /**
  21. * @param AdminInterface $admin
  22. * @param RouteCollection $collection
  23. */
  24. public function build(AdminInterface $admin, RouteCollection $collection);
  25. }