sfDoctrineRouteCollection.class.php 779 B

12345678910111213141516171819202122232425
  1. <?php
  2. /*
  3. * This file is part of the symfony package.
  4. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  5. * (c) Jonathan H. Wage <jonwage@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. /**
  11. * sfObjectRouteCollection represents a collection of routes bound to Doctrine objects.
  12. *
  13. * @package symfony
  14. * @subpackage doctrine
  15. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  16. * @author Jonathan H. Wage <jonwage@gmail.com>
  17. * @version SVN: $Id: sfDoctrineRouteCollection.class.php 11475 2008-09-12 11:07:23Z fabien $
  18. */
  19. class sfDoctrineRouteCollection extends sfObjectRouteCollection
  20. {
  21. protected
  22. $routeClass = 'sfDoctrineRoute';
  23. }